| Index: pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/local_computer_test.dart b/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| index 2a8e86963685d9e884c58f24c4c9590065e68c62..86b54ab84cc5b9c0060a15bcd26c711cfc25ab83 100644
|
| --- a/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| @@ -61,6 +61,27 @@ class LocalComputerTest extends AbstractSelectorSuggestionTest {
|
| isDeprecated: isDeprecated);
|
| }
|
|
|
| + fail_mixin_ordering() {
|
| + // TODO(paulberry): Duplicates aren't being removed, so we see both M1.m()
|
| + // and M2.m().
|
| + addTestSource('''
|
| +class B {}
|
| +class M1 {
|
| + void m() {}
|
| +}
|
| +class M2 {
|
| + void m() {}
|
| +}
|
| +class C extends B with M1, M2 {
|
| + void f() {
|
| + ^
|
| + }
|
| +}
|
| +''');
|
| + expect(computeFast(), isTrue);
|
| + assertSuggestMethod('m', 'M2', 'void');
|
| + }
|
| +
|
| @override
|
| void setUpComputer() {
|
| computer = new LocalComputer();
|
|
|