Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-412.cs
1 // Compiler options: -r:test-412-lib.dll
2
3 using System;
4 using System.Runtime.InteropServices;
5
6 namespace Foo {
7   public class Baz {
8     [DllImport("foo.so", CallingConvention=Bar.CConv)]
9     public static extern void doFoo();
10
11           public static void Main ()
12           { }
13   }
14 }