| Index: test/kernel/regression/mixin_library.dart
|
| diff --git a/test/kernel/regression/mixin_library.dart b/test/kernel/regression/mixin_library.dart
|
| index 1789b975c258271148f8b06befddf8c9bf0ea43c..43608356061f332ea5d3b80a2f65f8c6282791a1 100644
|
| --- a/test/kernel/regression/mixin_library.dart
|
| +++ b/test/kernel/regression/mixin_library.dart
|
| @@ -17,4 +17,8 @@ class Mixin<T> {
|
| T g(T a) => null;
|
| h() => V();
|
| l() => _private();
|
| + _privateMethod() => 49;
|
| + publicMethod() => _privateMethod();
|
| }
|
| +
|
| +foo(m) => m._privateMethod();
|
|
|