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

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

public class Foo {

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

	}
}