diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/environment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/environment.c b/src/environment.c index 9779fb1c..82d20373 100644 --- a/src/environment.c +++ b/src/environment.c @@ -67,7 +67,7 @@ env_t *global_env(bool source_mapping) { (void)bind_type(env, "Int", Type(BigIntType)); (void)bind_type(env, "Int32", Type(IntType, .bits = TYPE_IBITS32)); (void)bind_type(env, "Memory", Type(MemoryType)); - (void)bind_type(env, "Path", Type(PathType)); + PATH_TYPE = bind_type(env, "Path", Type(PathType)); RESULT_TYPE = declare_type(env, "enum Result(Success, Failure(reason:Text))"); PRESENT_TYPE = declare_type(env, "struct Present()"); |
