Add glib to the list of packages with debugging symbols.
[mono.git] / mcs / errors / cs0179-3.cs
1 // CS0179: `Bar.Foo.set' cannot declare a body because it is marked extern
2 // Line: 5
3
4 class Bar {
5         extern int Foo {
6                 set { }
7                 get { }
8         }
9 }
10