| Index: tests/language/mixin_extends_is_test.dart
 | 
| diff --git a/tests/language/mixin_extends_is_test.dart b/tests/language/mixin_extends_is_test.dart
 | 
| index dacdd3c7c97d0f32545f2b01c975664b80637d69..5c3a1c310e2dac68f9e78ec43f0b62048e2c7104 100644
 | 
| --- a/tests/language/mixin_extends_is_test.dart
 | 
| +++ b/tests/language/mixin_extends_is_test.dart
 | 
| @@ -4,19 +4,27 @@
 | 
|  
 | 
|  import "package:expect/expect.dart";
 | 
|  
 | 
| -class S { }
 | 
| -class M1 { }
 | 
| -class M2 { }
 | 
| -
 | 
| -class C extends S with M1 { }
 | 
| -class D extends S with M1, M2 { }
 | 
| -class E extends S with M2, M1 { }
 | 
| -class F extends E { }
 | 
| -
 | 
| -class C_ extends S with M1 { }
 | 
| -class D_ extends S with M1, M2 { }
 | 
| -class E_ extends S with M2, M1 { }
 | 
| -class F_ extends E_ { }
 | 
| +class S {}
 | 
| +
 | 
| +class M1 {}
 | 
| +
 | 
| +class M2 {}
 | 
| +
 | 
| +class C extends S with M1 {}
 | 
| +
 | 
| +class D extends S with M1, M2 {}
 | 
| +
 | 
| +class E extends S with M2, M1 {}
 | 
| +
 | 
| +class F extends E {}
 | 
| +
 | 
| +class C_ extends S with M1 {}
 | 
| +
 | 
| +class D_ extends S with M1, M2 {}
 | 
| +
 | 
| +class E_ extends S with M2, M1 {}
 | 
| +
 | 
| +class F_ extends E_ {}
 | 
|  
 | 
|  main() {
 | 
|    var c = new C();
 | 
| 
 |