2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-341.cs
blob649dcbc618a8f19484043a52ddfc928dea20f949
1 using System;
2 using System.Runtime.InteropServices;
4 class Test {
5 [DllImport (Libs.MyLib)]
6 private static extern void foo ();
8 public static void Main ()
13 class Libs : Bar {
16 class Bar : Foo {
17 internal const string MyLib = "SomeLibrary";
20 class Foo {