Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-391.cs
1 class C
2 {
3         void Foo (int i)
4         {
5         }
6         
7         void Foo (ref int i)
8         {
9         }
10         
11         void Bar (out bool b)
12         {
13                 b = false;
14         }
15         
16         void Bar (bool b)
17         {
18         }
19         
20         public static void Main ()
21         {
22         }
23 }
24
25