dart-sdk/tests/language/getter/no_setter_runtime_test.dart
Robert Nystrom 415cab79d3 Migrate language_2/getter to NNBD.
Change-Id: Ibe4be604f5002c125aba64c051793b750f31638a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/147819
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Erik Ernst <eernst@google.com>
2020-05-14 19:16:39 +00:00

39 lines
847 B
Dart

// TODO(multitest): This was automatically migrated from a multitest and may
// contain strange or dead code.
// 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() {
}
static test() {
}
}
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();
}