stage1: Prevent the creation of illegal ptr types

Closes #5140
This commit is contained in:
LemonBoy
2020-04-23 09:55:06 +02:00
committed by Andrew Kelley
parent 7634e67ba5
commit a7a8c433d0
2 changed files with 14 additions and 0 deletions

View File

@@ -2,6 +2,14 @@ const tests = @import("tests.zig");
const std = @import("std");
pub fn addCases(cases: *tests.CompileErrorContext) void {
cases.add("invalid pointer syntax",
\\export fn foo() void {
\\ var guid: *:0 const u8 = undefined;
\\}
, &[_][]const u8{
"tmp.zig:2:15: error: sentinels are only allowed on unknown-length pointers",
});
cases.add("declaration between fields",
\\const S = struct {
\\ const foo = 2;