Index: compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart |
diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart b/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart |
index d0ba21f0d503ddcd998a01a57e3aea465e29db70..01126055923555a4b45d94156d0a60ae8e773055 100644 |
--- a/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart |
+++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart |
@@ -5,7 +5,7 @@ |
class SomeClassImpl implements SomeClass { |
String message_; |
- SomeClassImpl() : this.message_ = "w00t!" { } |
+ SomeClassImpl(arg) : this.message_ = "w00t!" { } |
String get message() { return message_; } |
newMethod() { } |
} |