DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs0822.cs
123456789101112
// CS0822: An implicitly typed local variable cannot be a constant // Line: 9 public class Test { static void Main () { const var v = 0; } }