14 lines
125 B
C#
14 lines
125 B
C#
|
// Compiler options: -unsafe
|
||
|
|
||
|
unsafe class Baz
|
||
|
{
|
||
|
struct Foo
|
||
|
{
|
||
|
public Foo *next;
|
||
|
}
|
||
|
|
||
|
public static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|