Index: pkg/compiler/lib/src/diagnostics/messages.dart |
diff --git a/pkg/compiler/lib/src/diagnostics/messages.dart b/pkg/compiler/lib/src/diagnostics/messages.dart |
index ad689fd42d9c7609863c491d7ae0ec0726d69d23..44a2c68dfe146c8ef3d5d5c6aec0bd37bb09865c 100644 |
--- a/pkg/compiler/lib/src/diagnostics/messages.dart |
+++ b/pkg/compiler/lib/src/diagnostics/messages.dart |
@@ -676,7 +676,16 @@ class C { |
main() { |
new C(); |
} |
+""", |
+ """ |
+class C { |
+ int x; |
+ C(this.x, int x); |
+} |
+main() { |
+ new C(4, 2); |
+} |
""" |
]), |