Chromium Code Reviews| Index: test/codegen/try_catch.dart |
| diff --git a/test/codegen/try_catch.dart b/test/codegen/try_catch.dart |
| index e124d2263fb11ac10d1c2f04cc445438ed08f7a3..6139938cb0bb245eecdfde44c7bd6ef2cfc761be 100644 |
| --- a/test/codegen/try_catch.dart |
| +++ b/test/codegen/try_catch.dart |
| @@ -38,9 +38,17 @@ qux() { |
| } |
| } |
| +wub() { |
| + try { |
| + throw "on without exception parameter"; |
| + } on String { |
| + } |
| +} |
| + |
| main() { |
| foo(); |
| bar(); |
| baz(); |
| qux(); |
| + wub(); |
| } |