[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-917.cs
1 public class Foo
2 {
3         public static class Nested
4         {
5                 class bar
6                 {
7                         public static int value;
8                 }
9                 
10                 public static void Main ()
11                 {
12                         {
13                                 bool bar = false;
14                         }
15                         
16                         var i = bar.value;
17                 } 
18         }
19 }
20