Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0118-4.cs
1 // CS0118: `x.a.B' is a `property' but a `type' was expected
2 // Line: 9
3
4 using System;
5
6 namespace x
7 {
8         class a
9         {
10                 bool B { set {} }
11                 
12                 void Test (B b) {}
13         }
14 }