WhileyCompiler
WhileyCompiler copied to clipboard
Nested Template Syntax
Currently, the compiler rejects things like this:
List<Node<string>> items = ...
The compiler is recognising >> as the right shift operator! This is an age-old problem first encountered in C++, solved in C++11 with better support for the right angle backet.
As such, I'm marking this as a bug since this is not acceptable behaviour!