cs0193.cs 179 B

12345678910111213
  1. // cs0193.cs: * or -> operator can only be applied to pointer types.
  2. // Line: 8
  3. unsafe class X {
  4. static void Main ()
  5. {
  6. int a;
  7. if (*a == 0)
  8. return 1;
  9. return 0;
  10. }
  11. }