dart-sdk/tests/language_2/mixin_getter_regression_test.dart
Jaime Wren 09c44617e6 Migrate Dart 2.0 test block 133
Change-Id: I58172fdfe7daf5910d11ce90491b5aefa137accd
Reviewed-on: https://dart-review.googlesource.com/13623
Commit-Queue: Jaime Wren <jwren@google.com>
Reviewed-by: Jaime Wren <jwren@google.com>
Reviewed-by: Janice Collins <jcollins@google.com>
2017-10-12 21:22:41 +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);
}