blob: 3eae90ffd6ebbea6a10510e061f7986582f362ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0193: The * or -> operator must be applied to a pointer
// Line: 9
// Compiler options: -unsafe
unsafe class X {
static void Main ()
{
int a = 0;
if (*a == 0)
return;
}
}
|