summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0030-11.cs
blob: 4a8d1fd5527d3bb809d607f046797bee764b137a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0030: Cannot convert type `string' to `IA'
// Line: 13

interface IA
{
}

class MainClass
{
	public static void Main ()
	{
		string s = "s";
		IA i = (IA) s;
	}
}