summaryrefslogtreecommitdiffstats
path: root/test/Test.vala
diff options
context:
space:
mode:
Diffstat (limited to 'test/Test.vala')
-rw-r--r--test/Test.vala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Test.vala b/test/Test.vala
new file mode 100644
index 0000000..ce5da6d
--- /dev/null
+++ b/test/Test.vala
@@ -0,0 +1,9 @@
+namespace Eva {
+ class Test {
+ public static int main(string[] args) {
+ Eva.Long term = new Eva.Long(42);
+
+ return 0;
+ }
+ }
+}