10 lines
160 B
C#
Raw Permalink Normal View History

// CS0227: Unsafe code requires the `unsafe' command line option to be specified
// Line: 5
class UnsafeClass {
UnsafeClass ()
{
unsafe {}
}
}