[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / tests / test-799.cs
1 using System;
2
3 public class Test2
4 {
5         protected internal class Foo
6         {
7         }
8
9         private class Bar
10         {
11                 public Bar (Test2.Foo baseArg4)
12                 {
13                 }
14         }
15         public static int Main ()
16         {
17                 new Bar (new Foo ());
18                 return 0;
19         }
20 }