diff options
Diffstat (limited to 'Tests/CSharpOnly/csharponly.cs')
-rw-r--r-- | Tests/CSharpOnly/csharponly.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Tests/CSharpOnly/csharponly.cs b/Tests/CSharpOnly/csharponly.cs index ad4641a..3890c82 100644 --- a/Tests/CSharpOnly/csharponly.cs +++ b/Tests/CSharpOnly/csharponly.cs @@ -5,10 +5,8 @@ namespace CSharpOnly public static void Main(string[] args) { int val = Lib1.getResult(); - Lib2 l = new Lib2(); - val = l.myVal; - + val = val + l.myVal + nested.Lib1.getResult(); return; } } |