Chromium Code Reviews| Index: test/codegen/cascade.dart |
| diff --git a/test/codegen/cascade.dart b/test/codegen/cascade.dart |
| index f0b310863819fcf96e31b232c3d074a7a9af70bc..786c88a0f6da3a8c622048177fc4e0739f4ac1ff 100644 |
| --- a/test/codegen/cascade.dart |
| +++ b/test/codegen/cascade.dart |
| @@ -69,6 +69,13 @@ void test_VariableDeclaration_first() { |
| print(a); |
| } |
| +void test_increment() { |
| + var a = new A(); |
| + var y = a |
| + ..x += 1 |
| + ..x -= 1; |
| +} |
| + |
| class Base<T> { |
| final List<T> x = <T>[]; |
| } |