Chromium Code Reviews| Index: test/codegen/constructors.dart |
| diff --git a/test/codegen/constructors.dart b/test/codegen/constructors.dart |
| index ef468e8be8f6e62000063a1e5e7d6fc4f4182cfe..092e219921b040a688599849856dda592b121f2d 100644 |
| --- a/test/codegen/constructors.dart |
| +++ b/test/codegen/constructors.dart |
| @@ -80,4 +80,6 @@ class N extends M { |
| class P extends N { |
| P(int z) : super.named(z + 9000); |
| + P.foo(int x) : this(x + 42); |
| + P.bar() : this.foo(1); |
| } |