summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0029-5.cs
blob: 0099fc7f3cc09a191838375d83b16ad19b76052a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0029: Cannot implicitly convert type `T' to `int'
// Line: 4

class X {
	static void Main()
	{
		int a = new T ();
	}
}

struct T {
}