* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0227-2.cs
1 // cs0227-2.cs: Unsafe code requires the `unsafe' command line option to be specified
2 // Line: 5
3
4 class UnsafeClass {
5         UnsafeClass () 
6         {
7             unsafe {}
8         }
9 }