| Index: tests/language/conditional_access_helper.dart
|
| diff --git a/tests/language/conditional_access_helper.dart b/tests/language/conditional_access_helper.dart
|
| index 108857ac07f9d901d14c8f8d131e0862d21ba9b2..c847232358a51f6747538bd500970bd90bea47d3 100644
|
| --- a/tests/language/conditional_access_helper.dart
|
| +++ b/tests/language/conditional_access_helper.dart
|
| @@ -14,6 +14,26 @@ var topLevelVar;
|
| void topLevelFunction() {}
|
|
|
| class C {
|
| - static var staticField;
|
| - static void staticMethod() {}
|
| + static int staticInt;
|
| + static staticF(callback()) => callback();
|
| + static int staticG(int callback()) => callback();
|
| }
|
| +
|
| +C nullC() => null;
|
| +
|
| +class D {
|
| + static E staticE;
|
| +}
|
| +
|
| +class E {
|
| + G operator+(int i) => new I();
|
| + G operator-(int i) => new I();
|
| +}
|
| +
|
| +class F {}
|
| +
|
| +class G extends E implements F {}
|
| +
|
| +class H {}
|
| +
|
| +class I extends G implements H {}
|
|
|