w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0023.cs
blob166813a45da25a9ec880d7c39f8ec520915b3a19
1 // CS0023: The `~' operator cannot be applied to operand of type `Foo'
2 // Line : 10
4 public class Foo {
6 public static void Main ()
8 Foo k = new Foo ();
10 int i = ~ k;