| Index: pkg/front_end/testcases/inference/inferred_type_custom_binary_op.dart
|
| diff --git a/pkg/front_end/testcases/inference/inferred_type_custom_binary_op.dart b/pkg/front_end/testcases/inference/inferred_type_custom_binary_op.dart
|
| index 54f73ec9a54377a91d97be047e2b1eb05149a610..e452f7541e4f92529975d134f5c170df74674ef8 100644
|
| --- a/pkg/front_end/testcases/inference/inferred_type_custom_binary_op.dart
|
| +++ b/pkg/front_end/testcases/inference/inferred_type_custom_binary_op.dart
|
| @@ -9,5 +9,10 @@ class C {
|
| bool operator *(C other) => true;
|
| }
|
|
|
| -C c;
|
| +C c = new C();
|
| var /*@topType=bool*/ x = c * c;
|
| +
|
| +main() {
|
| + c;
|
| + x;
|
| +}
|
|
|