[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / errors / cs1615-3.cs
blobdc9a604fbb4b8b5e4c490e78569be46529ae200c
1 // CS1615: Argument `#1' does not require `out' modifier. Consider removing `out' modifier
2 // Line: 8
3 // Compiler options: -langversion:experimental
5 public class C
7 public static void Main ()
9 Foo (out var y);
12 static void Foo (int x)
16 static void Foo (string x)