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

cs0227.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ac842ee21d2adae4d587073f7469120919eb1b3 (plain)
1
2
3
4
5
6
7
8
// cs0227.cs: Unsafe code may only appear if compiling with /unsafe
// Line: 5

class UnsafeClass {
        unsafe UnsafeClass () {}
}