[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs1525-34.cs
blobfcd3668a1cd67f363b94fca3fa57420bebc8a72a
1 // CS1525: Unexpected symbol `='
2 // Line: 10
4 public class Test
6 private string name;
8 public string Name
10 get { return name ?? name = string.Empty; }