Files
sdk/tests/language_2/mixin/getter_regression_test.dart
T
Robert Nystrom fc1b1ecc71 Move files under language_2 into subdirectories.
Change-Id: Idbcc965a27e9ffeedf5e0a1068b019de4193070f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/127745
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Alexander Thomas <athom@google.com>
2019-12-11 19:18:00 +00:00

31 lines
605 B
Dart

// Copyright (c) 2013, 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.
// Regression test case for dart2js bug where the getter for y wasn't
// properly mixed in.
import "package:expect/expect.dart";
class C {
int x;
int get y => x;
}
class E {
int z = 10;
}
class D extends E with C {
int w = 42;
}
main() {
var d = new D();
d.x = 37;
Expect.equals(37, d.x);
Expect.equals(10, d.z);
Expect.equals(42, d.w);
Expect.equals(37, d.y);
}