blob: 1bc1835214c20a0f078b65fc4a9bcfa6e2e699a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0120: An object reference is required to access non-static member `X.Y(System.Text.StringBuilder)'
// Line: 8
using System.Text;
class X {
static void Main () {
X.Y(null);
}
void Y(StringBuilder someParam) {
}
}
|