diff options
| author | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2022-03-05 12:12:45 -0800 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2022-03-06 10:38:53 +0200 |
| commit | bf972e44d5d0ce704cae99957d565c55ea16335d (patch) | |
| tree | c709555e4de2eea52d52a6927b0bf0f3c3da6a14 | |
| parent | cd43f323d28e66d11273425cc6debcce735c33e2 (diff) | |
| download | zig-bf972e44d5d0ce704cae99957d565c55ea16335d.tar.gz zig-bf972e44d5d0ce704cae99957d565c55ea16335d.zip | |
stage2: coerce [*:0]u8 to other valid pointer types
This makes the following work properly (as it does in stage1, too):
var zero_ptr: [*:0]const u8 = undefined;
var no_zero_ptr: [*]const u8 = zero_ptr;
Prior to this this would fail with an "expected type" error since
coercion failed.
| -rw-r--r-- | src/Sema.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Sema.zig b/src/Sema.zig index ad8c98d6ad..fb7209ae0e 100644 --- a/src/Sema.zig +++ b/src/Sema.zig @@ -19939,6 +19939,7 @@ fn typePtrOrOptionalPtrTy( .many_mut_pointer, .manyptr_u8, .manyptr_const_u8, + .manyptr_const_u8_sentinel_0, => return ty, .pointer => switch (ty.ptrSize()) { |
