2008-04-12 Everaldo Canuto <ecanuto@novell.com>
[mono.git] / mcs / errors / cs0663-2.cs
1 // CS0663: An overloaded method `Test.Test(out int)' cannot differ on use of parameter modifiers only
2 // Line: 10
3
4 public class Test
5 {
6         public Test (ref int i)
7         {
8         }
9         
10         public Test (out int i)
11         {
12         }
13 }