Add a third AOT location, alongside ~/.mono/aot-cache and the assembly dir
[mono.git] / mcs / errors / cs8051.cs
1 // CS8051: Auto-implemented property `Test.Property' must have set accessor or initializer
2 // Line: 6
3
4 public abstract class Test
5 {
6         public string Property { get; }
7 }