| OLD | NEW |
| 1 // Copyright (c) 201, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 201, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // VMOptions=--assert_initializer | 4 // VMOptions=--assert_initializer |
| 5 // | 5 // |
| 6 // Dart test program testing assert statements. | 6 // Dart test program testing assert statements. |
| 7 | 7 |
| 8 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
| 9 | 9 |
| 10 class C { | 10 class C { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 const C.cc03(2, 1); //# cc03: compile-time error | 55 const C.cc03(2, 1); //# cc03: compile-time error |
| 56 const C.cc04(2, 1); //# cc04: compile-time error | 56 const C.cc04(2, 1); //# cc04: compile-time error |
| 57 const C.cc05(2, 1); //# cc05: compile-time error | 57 const C.cc05(2, 1); //# cc05: compile-time error |
| 58 const C.cc06(2, 1); //# cc06: compile-time error | 58 const C.cc06(2, 1); //# cc06: compile-time error |
| 59 const C.cc07(2, 1); //# cc07: compile-time error | 59 const C.cc07(2, 1); //# cc07: compile-time error |
| 60 const C.cc08(2, 1); //# cc08: compile-time error | 60 const C.cc08(2, 1); //# cc08: compile-time error |
| 61 const C.cc09(2, 1); //# cc09: compile-time error | 61 const C.cc09(2, 1); //# cc09: compile-time error |
| 62 const C.cc10(2, 1); //# cc10: compile-time error | 62 const C.cc10(2, 1); //# cc10: compile-time error |
| 63 const C.cc11(2, 1); //# cc11: compile-time error | 63 const C.cc11(2, 1); //# cc11: compile-time error |
| 64 } | 64 } |
| OLD | NEW |