[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / errors / cs0121-23.cs
blob7306752b5290258d0164c1d7c8dde02f9a0b5674
1 // CS0121: The call is ambiguous between the following methods or properties: `C.M(int, string, string)' and `C.M<int>(int, int?, string)'
2 // Line: 16
4 class C
6 static void M (int x, string y, string z = null)
10 static void M<T>(T t, int? u, string z = null)
14 static void Main ()
16 M (123, null);