New test.
[mono.git] / mcs / tests / test-341.cs
1 using System;
2 using System.Runtime.InteropServices;
3  
4 class Test {
5         [DllImport (Libs.MyLib)]
6         private static extern void foo ();
7  
8         public static void Main ()
9         {
10         }
11 }
12  
13 class Libs : Bar {
14 }
15
16 class Bar : Foo {
17         internal const string MyLib = "SomeLibrary";
18 }
19
20 class Foo {
21 }