Add glib to the list of packages with debugging symbols.
[mono.git] / mcs / errors / cs1597.cs
1 // CS1597: Semicolon after method or accessor block is not valid
2 // Line: 10
3
4 class C
5 {
6         public int Foo
7         {
8                 get
9                 {
10                 };
11         }
12 }