DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs0164.cs
12345678910
// CS0164: This label has not been referenced // Line: 7 // Compiler options: -warnaserror -warn:2 class X { static void Main () { a: return; } }