2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0038.cs
blob3d896a2a2eb15d029558b8d22d67c2797a5caec1
1 // cs0038.cs: Cannot access a nonstatic member of outer type `X' via nested type `X.Y'
2 // Line: 15
3 using System;
5 class X
7 int a = 5;
9 class Y
11 public long b;
13 public Y ()
15 Console.WriteLine (a);
19 static void Main ()