fix: impatient loading order

This commit is contained in:
nullchilly
2022-08-07 12:26:15 +07:00
committed by Sidhanth Rathod
parent 20f45c3962
commit aee1c8b830
67 changed files with 97276 additions and 4 deletions

View File

@@ -0,0 +1,33 @@
typedef struct {
// ^ keyword
// ^ keyword
a_t b;
// <- type
// ^ property
unsigned c_t (*d)[2];
// ^ type
// ^ type
// ^ property
}, T, V;
// ^ type
// ^ type
int main(const char string[SIZE]) {
// <- type
// ^ function
// ^ keyword
// ^ type
// ^ variable
// ^ constant
return foo.bar + foo.baz();
// ^ keyword
// ^ variable
// ^ property
// ^ function
error:
// <- label
return 0;
}