Merge pull request #5010 from Unity-Technologies/boehm-gc-alloc-fixed-sre
[mono.git] / mcs / errors / cs0227.cs
1 // CS0227: Unsafe code requires the `unsafe' command line option to be specified
2 // Line: 5
3
4 class UnsafeClass {
5         unsafe UnsafeClass () {}
6 }
7
8