summaryrefslogtreecommitdiff
path: root/tests/good/case.defs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/good/case.defs')
-rw-r--r--tests/good/case.defs6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/good/case.defs b/tests/good/case.defs
index 25ba510..479f733 100644
--- a/tests/good/case.defs
+++ b/tests/good/case.defs
@@ -19,9 +19,11 @@
/* Tests some keywords with different casing. */
SUBSYSTEM myroutine 100;
-TyPe int = MACH_MSG_TYPE_INTEGER_64;
+import <stdint.h>;
+
+TyPe uint64_t = MACH_MSG_TYPE_INTEGER_64;
typE mach_port_t = MACH_MSG_TYPE_COPY_SEND;
RouTine factorial(port : mach_port_t;
n : int;
- out result : int);
+ out result : uint64_t);