[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs1525-34.cs
1 // CS1525: Unexpected symbol `='
2 // Line: 10
3
4 public class Test
5 {
6         private string name;
7
8         public string Name
9         {
10                 get { return name ?? name = string.Empty; }
11         }
12 }