| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // Regression test for issue 11891. |
| 6 |
| 7 import "package:expect/expect.dart"; |
| 8 import "mixin_prefix_lib.dart"; |
| 9 |
| 10 class A extends Object with MixinClass { |
| 11 String baz() => bar(); |
| 12 } |
| 13 |
| 14 void main() { |
| 15 var a = new A(); |
| 16 Expect.equals('{"a":1}', a.baz()); |
| 17 } |
| OLD | NEW |