Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / errors / cs0132-3.cs
blob8a7a9ce3e4c3dae94ae585aafa1dd407cde0df4d
1 // CS0132: `Foo.Foo(int)': The static constructor must be parameterless
2 // Line: 10
4 class Foo
6 static Foo ()
10 static Foo (int x)
14 static void Main ()