"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs8052.cs
blobd3f6a219653a206e9e9dacc343e5759284b624e1
1 // CS8052: `I.P': Properties inside interfaces cannot have initializers
2 // Line: 6
4 interface I
6 int P { get; } = 4;