aboutsummaryrefslogtreecommitdiff
path: root/tests/calls.ek
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2023-05-06 22:06:25 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2023-05-06 22:06:25 +0300
commit82cdf010329c4ac6827698689e7e39644fad07b6 (patch)
tree641c75ea227892a3d8e1a28dcd1001d6ec114600 /tests/calls.ek
parentf98ec211bf60858b43b87ae125a5e13be9b41ee5 (diff)
downloadek-82cdf010329c4ac6827698689e7e39644fad07b6.tar.gz
ek-82cdf010329c4ac6827698689e7e39644fad07b6.zip
rename *.cu to *.ek
+ Name changes can be sort of difficult
Diffstat (limited to 'tests/calls.ek')
-rw-r--r--tests/calls.ek19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/calls.ek b/tests/calls.ek
new file mode 100644
index 0000000..4978649
--- /dev/null
+++ b/tests/calls.ek
@@ -0,0 +1,19 @@
+typedef some_type {
+ add(some_type, some_type => some_type);
+}
+
+add(a u32, b u32 => u32)
+{
+ return a + b;
+}
+
+/* ah fuck, analyze_proc gobbles up the typeof */
+some_proc(a some_type, b typeof a => typeof a)
+{
+ return add(a, b);
+}
+
+main()
+{
+ some_proc(20 as u32, 40 as u32);
+}