[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git] / mcs / errors / cs0103-3.cs
blobdcdc24a20ba49d0764502b650a56770ebac5d6c0
1 // CS0103: The name `test' does not exist in the current context
2 // Line: 11
4 class ClassMain
6 public static void Main ()
8 if (true) {
9 const bool test = false;
11 test = false;
14 static bool Test {
15 set {