Unify naming convention for all 2.0 files
[mono.git] / mcs / errors / cs1908-4.cs
diff --git a/mcs/errors/cs1908-4.cs b/mcs/errors/cs1908-4.cs
new file mode 100644 (file)
index 0000000..83f39e1
--- /dev/null
@@ -0,0 +1,8 @@
+// gcs1908.cs: The type of the default value should match the type of the parameter
+// Line: 
+
+class Test {
+       internal void f ([System.Runtime.InteropServices.DefaultParameterValue ((short) 1)] int x)
+       {
+       }
+}