[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git] / mcs / errors / cs1644-66.cs
blob3f393b50d307d4df750753fa0c712816af033433
1 // CS1644: Feature `expression body event accessor' cannot be used because it is not part of the C# 6.0 language specification
2 // Line: 11
3 // Compiler options: -langversion:6
5 using System;
7 class C
9 public event EventHandler Event
11 add => Ignore ();
14 static void Ignore ()