2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0118-4.cs
blobbebdf472d6f69afa92b3aeb6eaad0b7de263235b
1 // cs0118-4.cs: `x.a.B' is a `property' but a `type' was expected
2 // Line: 9
4 using System;
6 namespace x
8 class a
10 bool B { set {} }
12 void Test (B b) {}