Make these tests actually work, they contained other syntax errors than the
[mono.git] / mcs / errors / cs0193.cs
1 // cs0193.cs: * or -> operator can only be applied to pointer types.
2 // Line: 8
3
4 unsafe class X {
5         static void Main ()
6         {
7                 int a = 0;
8                 if (*a == 0)
9                         return 1;
10                 
11                 return 0;
12         }
13 }