OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 |
5 // This checks that it is possible to have a method named negate as | 7 // This checks that it is possible to have a method named negate as |
6 // well as unary- operator. | 8 // well as unary- operator. |
7 | 9 |
8 class Foo { | 10 class Foo { |
9 operator-() => 42; | 11 operator-() => 42; |
10 negate() => 87; | 12 negate() => 87; |
11 } | 13 } |
12 | 14 |
13 main() { | 15 main() { |
14 Expect.equals(42, -new Foo()); | 16 Expect.equals(42, -new Foo()); |
15 Expect.equals(87, new Foo().negate()); | 17 Expect.equals(87, new Foo().negate()); |
16 } | 18 } |
OLD | NEW |