copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs0193.cs
1 // cs0193.cs: * or -> operator can only be applied to pointer types.
2 // Line: 9
3 // Compiler options: -unsafe
4
5 unsafe class X {
6         static void Main ()
7         {
8                 int a = 0;
9                 if (*a == 0)
10                         return 1;
11                 
12                 return 0;
13         }
14 }