| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 | 4 |
| 5 import "package:expect/expect.dart"; | |
| 6 | |
| 7 main() { | 5 main() { |
| 8 var l = []; | 6 var l = []; |
| 9 l.add(1); | 7 l.add(1); |
| 10 Expect.equals(1, l.length); | 8 Expect.equals(1, l.length); |
| 11 Expect.equals(1, l[0]); | 9 Expect.equals(1, l[0]); |
| 12 } | 10 } |
| OLD | NEW |