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

class UnsafeClass {
        unsafe UnsafeClass () {}
}