C. Dunn wrote:
> This works:
> <code>
> class Foo(T){
> int bar(){
> return A.hi();
> }
> };
>
> class A{
> static int hi(){
> return 0;
> }
>
> F!(char) x;
> };
> </code>
I presume that should be 'Foo!(char) x;' (even though your error message refers
to 'F').