OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 import "package:expect/expect.dart"; |
| 6 import "regress_10996_lib.dart" as lib; |
| 7 |
| 8 foo(a, [b]) { |
| 9 return a + b + lib.a + lib.b; |
| 10 } |
| 11 |
| 12 bar(c, {d}) { |
| 13 return c + d + lib.c + lib.d; |
| 14 } |
| 15 |
| 16 main() { |
| 17 Expect.equals(1 + 2 + 3 + 4, foo(1, 2)); |
| 18 Expect.equals(7 + 8 + 3 + 4, foo(7, 8)); |
| 19 Expect.equals(3 + 4 + 5 + 6, bar(3, d: 4)); |
| 20 Expect.equals(7 + 8 + 5 + 6, bar(7, d: 8)); |
| 21 } |
OLD | NEW |