diff options
Diffstat (limited to 'Tests/CSharpOnly/csharponly.cs')
-rw-r--r-- | Tests/CSharpOnly/csharponly.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/CSharpOnly/csharponly.cs b/Tests/CSharpOnly/csharponly.cs new file mode 100644 index 0000000000..ad4641ab66 --- /dev/null +++ b/Tests/CSharpOnly/csharponly.cs @@ -0,0 +1,15 @@ +namespace CSharpOnly +{ + class CSharpOnly + { + public static void Main(string[] args) + { + int val = Lib1.getResult(); + + Lib2 l = new Lib2(); + val = l.myVal; + + return; + } + } +} |