[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[mono.git] / mcs / errors / cs0568.cs
1 // CS0568: Structs cannot contain explicit parameterless constructors
2 // Line: 6
3
4 struct S
5 {
6         public S ()
7         {
8         }
9 }