summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0144-3.cs
blob: 491bf253488f36b570a70eb97eaa8e95e9c9d19e (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0144: Cannot create an instance of the abstract class or interface `ITest'
// Line: 9
// Compiler options: -r:CS0144-3-lib.dll

public class SampleClass {
		public void Main ()
		{
			ITest modelo;
			modelo= new ITest ();
		}
}