summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0227-2.cs
blob: aec7db82d3b1ca2406d986f52b65957fd0973840 (plain)
1
2
3
4
5
6
7
8
9
// CS0227: Unsafe code requires the `unsafe' command line option to be specified
// Line: 5

class UnsafeClass {
        UnsafeClass () 
	{
	    unsafe {}
	}
}