summaryrefslogtreecommitdiffstats
path: root/test cases/csharp/4 external dep/prog.cs
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/csharp/4 external dep/prog.cs')
-rw-r--r--test cases/csharp/4 external dep/prog.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/csharp/4 external dep/prog.cs b/test cases/csharp/4 external dep/prog.cs
new file mode 100644
index 0000000..9393fef
--- /dev/null
+++ b/test cases/csharp/4 external dep/prog.cs
@@ -0,0 +1,8 @@
+using System;
+using GLib;
+
+public class Prog {
+ static public void Main (string[] args) {
+ Console.WriteLine(GLib.FileUtils.GetFileContents(args[0]));
+ }
+}