summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0227.cs
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 () {}
}