[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0103-17.cs
blob72d953682ea12e8533e99df08e982dd36a59acc7
1 // CS0103: The name `Foo' does not exist in the current context
2 // Line: 17
4 using static S;
6 class S
8 public void Foo ()
13 class Test
15 public static void Main ()
17 Foo ();