Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0227-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1599c16b4f3535e8d8161da584cd305cd00102c4 (plain)
1
2
3
4
5
6
7
8
9
// cs0227-2.cs: Unsafe code requires the `unsafe' command line option to be specified
// Line: 5

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