blob: 72d953682ea12e8533e99df08e982dd36a59acc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// CS0103: The name `Foo' does not exist in the current context
// Line: 17
using static S;
class S
{
public void Foo ()
{
}
}
class Test
{
public static void Main ()
{
Foo ();
}
}
|