[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0501-4.cs
1 // CS0501: `X.Mine.get' must have a body because it is not marked abstract, extern, or partial
2 // Line: 6
3
4 class X
5 {
6         public int Mine { get; set {} }
7 }