simple runtime test
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5225 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
e381e8ba60
commit
3bb0b9c77d
1 changed files with 10 additions and 0 deletions
10
Examples/test-suite/csharp/imports_runme.cs
Normal file
10
Examples/test-suite/csharp/imports_runme.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using System;
|
||||
|
||||
public class runme
|
||||
{
|
||||
static void Main() {
|
||||
B b = new B();
|
||||
b.hello(); //call member function in A which is in a different SWIG generated library.
|
||||
b.bye();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue