Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 class Foo { | |
| 2 final Bar<Foo> bar = const Bar/* comment here use to trigger bug 323 */(); | |
|
jimhug
2011/12/02 00:16:00
Minor TODO: Add some simple cases to this that wou
| |
| 3 } | |
| 4 | |
| 5 class Bar<T extends Foo> { | |
| 6 const Bar(); | |
| 7 } | |
| 8 | |
| 9 main() { | |
| 10 Expect.equals(new Foo().bar, const Bar()); | |
| 11 } | |
| OLD | NEW |