Files
sdk/tests/language/mixin/abstract_getter_test.dart
T
Robert Nystrom d839eb7bf9 Migrate language_2/mixin to NNBD.
Change-Id: I4501e9a9d2d958cecf21460b628d2ac50a5135bc
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/149492
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Erik Ernst <eernst@google.com>
Commit-Queue: Bob Nystrom <rnystrom@google.com>
2020-06-03 00:05:18 +00:00

42 lines
629 B
Dart

// Copyright (c) 2016, 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.
import 'package:expect/expect.dart';
abstract class B {
int get x;
}
class C {
int get x => 42;
}
class D extends C with B {
final int x;
D(this.x);
}
class C2 {
int get x => 42;
}
abstract class B2 extends C2 {
int get x;
}
class D2 extends B2 {
final int x;
D2(this.x);
}
void main() {
var d = new D(17);
Expect.equals(d.x, 17);
var d2 = new D2(17);
Expect.equals(d.x, 17);
}