Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs1908-4.cs
1 // CS1908: The type of the default value should match the type of the parameter
2 // Line: 
3
4 class Test {
5         internal void f ([System.Runtime.InteropServices.DefaultParameterValue ((short) 1)] int x)
6         {
7         }
8 }