| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticWarningCodeTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticWarningCodeTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticWarningCodeTest.java
|
| index 04fef2d092ab58da5a3e4651dba6bbc682f715cc..3cebb418dd45391acbc6501b9e2e7fee3566df3c 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticWarningCodeTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticWarningCodeTest.java
|
| @@ -595,7 +595,7 @@ public class StaticWarningCodeTest extends ResolverTestCase {
|
| public void test_nonVoidReturnForOperator() throws Exception {
|
| Source source = addSource(createSource(//
|
| "class A {",
|
| - " int operator []=() {}",
|
| + " int operator []=(a, b) {}",
|
| "}"));
|
| resolve(source);
|
| assertErrors(StaticWarningCode.NON_VOID_RETURN_FOR_OPERATOR);
|
|
|