Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0851.cs
1 // CS0851: Overloaded contructor `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 }