[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[mono.git] / mcs / errors / cs0531-2.cs
1 // CS0531: `Interface.P.get': interface members cannot have a definition
2 // Line:
3
4 public interface Interface {        
5         int P { get {} }
6 }