Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0019.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3dbd4f9b93d65bc1a1b62e245e31b66c0db4d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0019.cs : Operator + cannot be applied to operands of type `Foo' and `int'
// Line : 11

public class Foo {

	public static void Main ()
	{
		
		Foo k = new Foo ();

		int i = k + 6;
		
	}
}