2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0122-29.cs
blob1f038b2ee0ca430ead3e1e0dddfac3cfeb3fe850
1 // CS0122: `Foo.Bar()' is inaccessible due to its protection level
2 // Line: 17
4 using System;
6 public class Foo
8 void Bar ()
13 public class Baz : Foo
15 public static void Main (String[] args)
17 Bar ();