8de8a1c226
They are all errors now. Change-Id: If48d38e38e845fd5b5a950dd5514bf1cbbce03d8 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/155880 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
54 lines
1.5 KiB
Dart
54 lines
1.5 KiB
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
// Verifies behavior with a static getter, but no field and no setter.
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
class Example {
|
|
static int _var = 1;
|
|
static int get nextVar => _var++;
|
|
Example() {
|
|
nextVar = 1;
|
|
// ^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.ASSIGNMENT_TO_FINAL_NO_SETTER
|
|
// [cfe] Setter not found: 'nextVar'.
|
|
this.nextVar = 1;
|
|
// ^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.INSTANCE_ACCESS_TO_STATIC_MEMBER
|
|
// [cfe] The setter 'nextVar' isn't defined for the class 'Example'.
|
|
// ^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.ASSIGNMENT_TO_FINAL_NO_SETTER
|
|
}
|
|
static test() {
|
|
nextVar = 0;
|
|
// ^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.ASSIGNMENT_TO_FINAL_NO_SETTER
|
|
// [cfe] Setter not found: 'nextVar'.
|
|
this.nextVar = 0;
|
|
// ^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.INVALID_REFERENCE_TO_THIS
|
|
// [cfe] Expected identifier, but got 'this'.
|
|
// ^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.INSTANCE_ACCESS_TO_STATIC_MEMBER
|
|
// ^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.ASSIGNMENT_TO_FINAL_NO_SETTER
|
|
}
|
|
}
|
|
|
|
class Example1 {
|
|
Example1(int i) {}
|
|
}
|
|
|
|
class Example2 extends Example1 {
|
|
static int _var = 1;
|
|
static int get nextVar => _var++;
|
|
Example2() : super(nextVar) {} // No 'this' in scope.
|
|
}
|
|
|
|
void main() {
|
|
Example x = new Example();
|
|
Example.test();
|
|
Example2 x2 = new Example2();
|
|
}
|