Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1547-9.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 11
3
4 namespace OtherTest
5 {
6         public static class Program
7         {
8                 static void MainD (object p)
9                 {
10                         if (p is String)
11                                 (void)((string) p).ToString ();
12                 }
13         }
14 }