[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0601.cs
blob8a59614ec1c5cdc0b6ada7bdf37a7ffdd2de252f
1 // CS0601: The DllImport attribute must be specified on a method marked `static' and `extern'
2 // Line : 9
4 using System;
5 using System.Runtime.InteropServices;
7 class Test {
8 [DllImport("cygwin1.dll", EntryPoint="puts", CharSet=CharSet.Ansi)]
9 public extern int puts (string name);