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: 166813a45da25a9ec880d7c39f8ec520915b3a19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0023: The `~' 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;

	}
}