mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
46320c5208
Interesting changes: - A static getter colliding with an inherited non-static setter is a compile error, not a type warning. - Trying to call a setter on what is only a getter is a compile error with no runtime behavior. - Add support to test.dart for negative tests in DDC. BUG= R=jcollins@google.com Review-Url: https://codereview.chromium.org/3005643002 .
35 lines
916 B
Dart
35 lines
916 B
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++; //# 03: compile-time error
|
|
this.nextVar++; //# 00: compile-time error
|
|
}
|
|
static test() {
|
|
nextVar++; // //# 01: compile-time error
|
|
this.nextVar++; // //# 02: compile-time error
|
|
}
|
|
}
|
|
|
|
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();
|
|
}
|