Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[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 }