[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs1105.cs
1 // CS1105: `S.Foo(this int?)': Extension methods must be declared static
2 // Line: 6
3
4 static class S
5 {
6         void Foo (this int? s)
7         {
8         }
9 }