summaryrefslogtreecommitdiffstats
path: root/test/Test.vala
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2010-06-26 17:28:49 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2010-06-26 17:28:49 +0200
commita6a3c416c77d383f00a723ceb4545e89a2334923 (patch)
tree4f99cde816967947bf4cd5dc3d631aa04df50202 /test/Test.vala
downloadeva-a6a3c416c77d383f00a723ceb4545e89a2334923.tar
eva-a6a3c416c77d383f00a723ceb4545e89a2334923.zip
Put together cmake build
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;
+ }
+ }
+}