blob: b50c96180b4bf8295d72c31f65f6604ea916c7d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Compiler options: -unsafe
struct S
{
}
class X
{
unsafe int* Foo {
get { return null; }
}
unsafe S* Foo2 {
get { return null; }
}
public static void Main ()
{
}
}
|