-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
The code:
class Foo<T>
{
}
class Bar : Foo<Bar>
{
Bar(): super(this){
}
public void Test ()
{
}
}
returns the message:
error 262: Keyword 'this' is not valid in a static context
but since this is a constructor, there is no 'static' context. In java, the
same code, return a more descriptive message:
Cannot refer to 'this' nor 'super' while explicitly invoking a constructor
Original issue reported on code.google.com by ice.ta...@gmail.com on 10 Jul 2010 at 5:19
Reactions are currently unavailable