[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs0146-7.cs
1 // CS0146: Circular base class dependency involving `Generic<P>.Status' and `Generic<P>.Status'
2 // Line: 6
3
4 public class Generic<P>
5 {
6         public class Status : Status
7         {
8                 Status (Foo foo) : base (foo)
9                 {
10                 }
11         }
12 }