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: f298e4ad3235bee85e0a1fe2b2afbb52cb626dfd (plain)
1
2
3
4
5
6
7
8
// cs0227.cs: Unsafe code requires the `unsafe' command line option to be specified
// Line: 5

class UnsafeClass {
        unsafe UnsafeClass () {}
}