Merge pull request #4063 from ntherning/fix-culture-info-problem-in-RepeatInfoTest
[mono.git] / mcs / errors / cs8050.cs
1 // CS8050: `C.P': Only auto-implemented properties can have initializers
2 // Line: 6
3
4 abstract class C
5 {
6         public abstract int P { get; } = 4;
7 }