summaryrefslogtreecommitdiffstats
path: root/test cases/csharp/2 library/prog.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test cases/csharp/2 library/prog.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/csharp/2 library/prog.cs b/test cases/csharp/2 library/prog.cs
new file mode 100644
index 0000000..8bf6a31
--- /dev/null
+++ b/test cases/csharp/2 library/prog.cs
@@ -0,0 +1,8 @@
+using System;
+
+public class Prog {
+ static public void Main () {
+ Helper h = new Helper();
+ h.print();
+ }
+}