[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / tests / test-pragma-unrecognized.cs
1 // Compiler options: -warn:4
2 // This test should print only: warning CS1633: Unrecognized #pragma directive
3
4 #pragma xxx some unrecognized text
5
6 public class C
7 {
8   public static void Main () {}
9 }