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: a909e680a7677e3c7b1d2a09aedfcc75cb043efd (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0019: Operator `+' cannot be applied to operands of type `Foo' and `int'
// Line : 9

public class Foo
{
	public static void Main ()
	{
		Foo k = new Foo ();
		int i = k + 6;
	}
}