summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0029-14.cs
blob: e0141e92b643097e0b6f4226b8feaf3d687b68e3 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0029: Cannot implicitly convert type `int' to `System.IDisposable'
// Line: 8

class A
{
	public static void Main ()
	{
		System.IDisposable id = 1;
	}
}