aboutsummaryrefslogtreecommitdiff
path: root/tests/structs.cu
diff options
context:
space:
mode:
Diffstat (limited to 'tests/structs.cu')
-rw-r--r--tests/structs.cu4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/structs.cu b/tests/structs.cu
index 24e520e..8a3a1bb 100644
--- a/tests/structs.cu
+++ b/tests/structs.cu
@@ -1,4 +1,4 @@
-type any {}
+typedef any {}
struct basic_struct {
a i64;
@@ -21,7 +21,7 @@ main()
complex_named const = {.a = 1, .b = 2, .c = 3} as complex_struct;
/* should parentheses be required around typeof? */
- complex_ordinal const = {1, 2, 3} as complex_named;
+ complex_ordinal const = {1, 2, 3} as typeof complex_named;
complex_mixed const = {1, .b = 2, 3} as complex_struct;
/* force types */