blob: b65a34cecbaa43c8efa3808a67bd22c061f2b205 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS0119: Expression denotes a `type parameter', where a `variable', `value' or `type' was expected
// Line: 15
class A
{
public class T
{
}
}
class B<T> : A
{
void Foo ()
{
T.Equals (null, null);
}
}
|