* TreeView.cs: Allow more explicit setting of top node
[mono-project.git] / mcs / errors / cs0103-3.cs
blob64c2818da66d78690f1dc896ea2bc89ce07373e9
1 // cs0103-3.cs: The name `y' does not exist in the context of `C'
2 // Line: 8
4 public class C
6 public static void Main ()
8 const int x = y;
9 const int y = 1;