2017-04-19 11:00:12 -07:00
|
|
|
const tests = @import("tests.zig");
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-31 07:56:59 -07:00
|
|
|
pub fn addCases(cases: *tests.CompileErrorContext) void {
|
2018-08-02 11:15:31 -07:00
|
|
|
cases.add(
|
|
|
|
"@handle() called outside of function definition",
|
|
|
|
\\var handle_undef: promise = undefined;
|
|
|
|
\\var handle_dummy: promise = @handle();
|
|
|
|
\\export fn entry() bool {
|
|
|
|
\\ return handle_undef == handle_dummy;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:29: error: @handle() called outside of function definition",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"@handle() in non-async function",
|
|
|
|
\\export fn entry() bool {
|
|
|
|
\\ var handle_undef: promise = undefined;
|
|
|
|
\\ return handle_undef == @handle();
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:28: error: @handle() in non-async function",
|
|
|
|
);
|
|
|
|
|
2018-08-02 10:55:31 -07:00
|
|
|
cases.add(
|
|
|
|
"`_` is not a declarable symbol",
|
|
|
|
\\export fn f1() usize {
|
|
|
|
\\ var _: usize = 2;
|
|
|
|
\\ return _;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: `_` is not a declarable symbol",
|
|
|
|
".tmp_source.zig:3:12: error: use of undeclared identifier '_'",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"`_` should not be usable inside for",
|
|
|
|
\\export fn returns() void {
|
|
|
|
\\ for ([]void{}) |_, i| {
|
|
|
|
\\ for ([]void{}) |_, j| {
|
|
|
|
\\ return _;
|
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:4:20: error: use of undeclared identifier '_'",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"`_` should not be usable inside while",
|
|
|
|
\\export fn returns() void {
|
|
|
|
\\ while (optionalReturn()) |_| {
|
|
|
|
\\ while (optionalReturn()) |_| {
|
|
|
|
\\ return _;
|
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
\\fn optionalReturn() ?u32 {
|
|
|
|
\\ return 1;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:4:20: error: use of undeclared identifier '_'",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"`_` should not be usable inside while else",
|
|
|
|
\\export fn returns() void {
|
|
|
|
\\ while (optionalReturnError()) |_| {
|
|
|
|
\\ while (optionalReturnError()) |_| {
|
|
|
|
\\ return;
|
|
|
|
\\ } else |_| {
|
|
|
|
\\ if (_ == error.optionalReturnError) return;
|
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
\\fn optionalReturnError() !?u32 {
|
|
|
|
\\ return error.optionalReturnError;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:6:17: error: use of undeclared identifier '_'",
|
|
|
|
);
|
|
|
|
|
2018-07-26 15:29:07 -07:00
|
|
|
cases.add(
|
|
|
|
"while loop body expression ignored",
|
|
|
|
\\fn returns() usize {
|
|
|
|
\\ return 2;
|
|
|
|
\\}
|
|
|
|
\\export fn f1() void {
|
|
|
|
\\ while (true) returns();
|
|
|
|
\\}
|
|
|
|
\\export fn f2() void {
|
|
|
|
\\ var x: ?i32 = null;
|
|
|
|
\\ while (x) |_| returns();
|
|
|
|
\\}
|
|
|
|
\\export fn f3() void {
|
|
|
|
\\ var x: error!i32 = error.Bad;
|
|
|
|
\\ while (x) |_| returns() else |_| unreachable;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:5:25: error: expression value is ignored",
|
|
|
|
".tmp_source.zig:9:26: error: expression value is ignored",
|
|
|
|
".tmp_source.zig:13:26: error: expression value is ignored",
|
|
|
|
);
|
|
|
|
|
2018-07-25 15:15:55 -07:00
|
|
|
cases.add(
|
|
|
|
"missing parameter name of generic function",
|
|
|
|
\\fn dump(var) void {}
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var a: u8 = 9;
|
|
|
|
\\ dump(a);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:1:9: error: missing parameter name",
|
|
|
|
);
|
|
|
|
|
2018-07-25 14:08:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-inline for loop on a type that requires comptime",
|
|
|
|
\\const Foo = struct {
|
|
|
|
\\ name: []const u8,
|
|
|
|
\\ T: type,
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const xx: [2]Foo = undefined;
|
|
|
|
\\ for (xx) |f| {}
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:7:15: error: variable of type 'Foo' must be const or comptime",
|
|
|
|
);
|
|
|
|
|
2018-07-24 07:13:40 -07:00
|
|
|
cases.add(
|
|
|
|
"generic fn as parameter without comptime keyword",
|
|
|
|
\\fn f(_: fn (var) void) void {}
|
|
|
|
\\fn g(_: var) void {}
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ f(g);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:1:9: error: parameter of type 'fn(var)var' must be declared comptime",
|
|
|
|
);
|
|
|
|
|
2018-07-11 10:23:37 -07:00
|
|
|
cases.add(
|
|
|
|
"optional pointer to void in extern struct",
|
2018-07-16 07:53:15 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @IntType(false, @maxValue(u32) + 1);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:40: error: integer value 4294967296 cannot be implicitly casted to type 'u32'",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"optional pointer to void in extern struct",
|
2018-07-11 10:23:37 -07:00
|
|
|
\\const Foo = extern struct {
|
|
|
|
\\ x: ?*const void,
|
|
|
|
\\};
|
|
|
|
\\const Bar = extern struct {
|
|
|
|
\\ foo: Foo,
|
|
|
|
\\ y: i32,
|
|
|
|
\\};
|
|
|
|
\\export fn entry(bar: *Bar) void {}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: extern structs cannot contain fields of type '?*const void'",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"use of comptime-known undefined function value",
|
|
|
|
\\const Cmd = struct {
|
|
|
|
\\ exec: fn () void,
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const command = Cmd{ .exec = undefined };
|
|
|
|
\\ command.exec();
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:6:12: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
2018-07-10 07:12:08 -07:00
|
|
|
cases.add(
|
|
|
|
"use of comptime-known undefined function value",
|
|
|
|
\\const Cmd = struct {
|
|
|
|
\\ exec: fn () void,
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const command = Cmd{ .exec = undefined };
|
|
|
|
\\ command.exec();
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:6:12: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
2018-07-09 08:13:29 -07:00
|
|
|
cases.add(
|
|
|
|
"bad @alignCast at comptime",
|
|
|
|
\\comptime {
|
|
|
|
\\ const ptr = @intToPtr(*i32, 0x1);
|
|
|
|
\\ const aligned = @alignCast(4, ptr);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:35: error: pointer address 0x1 is not aligned to 4 bytes",
|
|
|
|
);
|
|
|
|
|
2018-07-09 07:43:29 -07:00
|
|
|
cases.add(
|
|
|
|
"@ptrToInt on *void",
|
|
|
|
\\export fn entry() bool {
|
|
|
|
\\ return @ptrToInt(&{}) == @ptrToInt(&{});
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:23: error: pointer to size 0 type has no address",
|
|
|
|
);
|
|
|
|
|
2018-07-06 21:25:32 -07:00
|
|
|
cases.add(
|
|
|
|
"@popCount - non-integer",
|
|
|
|
\\export fn entry(x: f32) u32 {
|
|
|
|
\\ return @popCount(x);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:22: error: expected integer type, found 'f32'",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"@popCount - negative comptime_int",
|
|
|
|
\\comptime {
|
|
|
|
\\ _ = @popCount(-1);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:9: error: @popCount on negative comptime_int value -1",
|
|
|
|
);
|
|
|
|
|
2018-07-06 13:20:46 -07:00
|
|
|
cases.addCase(x: {
|
|
|
|
const tc = cases.create(
|
|
|
|
"wrong same named struct",
|
|
|
|
\\const a = @import("a.zig");
|
|
|
|
\\const b = @import("b.zig");
|
|
|
|
\\
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var a1: a.Foo = undefined;
|
|
|
|
\\ bar(&a1);
|
|
|
|
\\}
|
|
|
|
\\
|
|
|
|
\\fn bar(x: *b.Foo) void {}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:6:10: error: expected type '*Foo', found '*Foo'",
|
|
|
|
".tmp_source.zig:6:10: note: pointer type child 'Foo' cannot cast into pointer type child 'Foo'",
|
|
|
|
"a.zig:1:17: note: Foo declared here",
|
|
|
|
"b.zig:1:17: note: Foo declared here",
|
|
|
|
);
|
|
|
|
|
|
|
|
tc.addSourceFile("a.zig",
|
|
|
|
\\pub const Foo = struct {
|
|
|
|
\\ x: i32,
|
|
|
|
\\};
|
|
|
|
);
|
|
|
|
|
|
|
|
tc.addSourceFile("b.zig",
|
|
|
|
\\pub const Foo = struct {
|
|
|
|
\\ z: f64,
|
|
|
|
\\};
|
|
|
|
);
|
|
|
|
|
|
|
|
break :x tc;
|
|
|
|
});
|
|
|
|
|
2018-06-21 14:41:49 -07:00
|
|
|
cases.add(
|
|
|
|
"enum field value references enum",
|
|
|
|
\\pub const Foo = extern enum {
|
|
|
|
\\ A = Foo.B,
|
|
|
|
\\ C = D,
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var s: Foo = Foo.E;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:1:17: error: 'Foo' depends on itself",
|
|
|
|
);
|
|
|
|
|
2018-06-19 13:06:10 -07:00
|
|
|
cases.add(
|
|
|
|
"@floatToInt comptime safety",
|
|
|
|
\\comptime {
|
|
|
|
\\ _ = @floatToInt(i8, f32(-129.1));
|
|
|
|
\\}
|
|
|
|
\\comptime {
|
|
|
|
\\ _ = @floatToInt(u8, f32(-1.1));
|
|
|
|
\\}
|
|
|
|
\\comptime {
|
|
|
|
\\ _ = @floatToInt(u8, f32(256.1));
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:9: error: integer value '-129' cannot be stored in type 'i8'",
|
|
|
|
".tmp_source.zig:5:9: error: integer value '-1' cannot be stored in type 'u8'",
|
|
|
|
".tmp_source.zig:8:9: error: integer value '256' cannot be stored in type 'u8'",
|
|
|
|
);
|
|
|
|
|
2018-06-18 08:12:15 -07:00
|
|
|
cases.add(
|
|
|
|
"use c_void as return type of fn ptr",
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const a: fn () c_void = undefined;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:20: error: return type cannot be opaque",
|
|
|
|
);
|
|
|
|
|
2018-06-18 08:04:18 -07:00
|
|
|
cases.add(
|
|
|
|
"non int passed to @intToFloat",
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const x = @intToFloat(f32, 1.1);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:32: error: expected int type, found 'comptime_float'",
|
|
|
|
);
|
2018-06-18 08:12:15 -07:00
|
|
|
|
2018-06-13 08:04:09 -07:00
|
|
|
cases.add(
|
|
|
|
"use implicit casts to assign null to non-nullable pointer",
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var x: i32 = 1234;
|
|
|
|
\\ var p: *i32 = &x;
|
|
|
|
\\ var pp: *?*i32 = &p;
|
|
|
|
\\ pp.* = null;
|
|
|
|
\\ var y = p.*;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:4:23: error: expected type '*?*i32', found '**i32'",
|
|
|
|
);
|
|
|
|
|
2018-06-05 20:54:14 -07:00
|
|
|
cases.add(
|
|
|
|
"attempted implicit cast from T to [*]const T",
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const x: [*]const bool = true;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:30: error: expected type '[*]const bool', found 'bool'",
|
|
|
|
);
|
|
|
|
|
2018-06-05 19:23:23 -07:00
|
|
|
cases.add(
|
|
|
|
"dereference unknown length pointer",
|
|
|
|
\\export fn entry(x: [*]i32) i32 {
|
|
|
|
\\ return x.*;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:13: error: index syntax required for unknown-length pointer type '[*]i32'",
|
|
|
|
);
|
|
|
|
|
2018-06-05 17:24:11 -07:00
|
|
|
cases.add(
|
|
|
|
"field access of unknown length pointer",
|
|
|
|
\\const Foo = extern struct {
|
|
|
|
\\ a: i32,
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\export fn entry(foo: [*]Foo) void {
|
|
|
|
\\ foo.a += 1;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:6:8: error: type '[*]Foo' does not support field access",
|
|
|
|
);
|
|
|
|
|
2018-06-05 15:03:21 -07:00
|
|
|
cases.add(
|
|
|
|
"unknown length pointer to opaque",
|
|
|
|
\\export const T = [*]@OpaqueType();
|
|
|
|
,
|
|
|
|
".tmp_source.zig:1:18: error: unknown-length pointer to opaque",
|
|
|
|
);
|
|
|
|
|
2018-06-05 07:48:53 -07:00
|
|
|
cases.add(
|
|
|
|
"error when evaluating return type",
|
|
|
|
\\const Foo = struct {
|
|
|
|
\\ map: i32(i32),
|
|
|
|
\\
|
|
|
|
\\ fn init() Foo {
|
|
|
|
\\ return undefined;
|
|
|
|
\\ }
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var rule_set = try Foo.init();
|
|
|
|
\\}
|
|
|
|
,
|
2018-06-19 15:51:46 -07:00
|
|
|
".tmp_source.zig:2:13: error: expected type 'i32', found 'type'",
|
2018-06-05 07:48:53 -07:00
|
|
|
);
|
|
|
|
|
2018-06-04 19:11:14 -07:00
|
|
|
cases.add(
|
|
|
|
"slicing single-item pointer",
|
|
|
|
\\export fn entry(ptr: *i32) void {
|
|
|
|
\\ const slice = ptr[0..2];
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:22: error: slice of single-item pointer",
|
|
|
|
);
|
|
|
|
|
2018-06-03 22:09:15 -07:00
|
|
|
cases.add(
|
|
|
|
"indexing single-item pointer",
|
|
|
|
\\export fn entry(ptr: *i32) i32 {
|
|
|
|
\\ return ptr[1];
|
|
|
|
\\}
|
|
|
|
,
|
2018-06-04 19:11:14 -07:00
|
|
|
".tmp_source.zig:2:15: error: index of single-item pointer",
|
2018-06-03 22:09:15 -07:00
|
|
|
);
|
|
|
|
|
2018-06-02 12:20:51 -07:00
|
|
|
cases.add(
|
2018-06-19 15:51:46 -07:00
|
|
|
"nested error set mismatch",
|
2018-06-02 12:20:51 -07:00
|
|
|
\\const NextError = error{NextError};
|
|
|
|
\\const OtherError = error{OutOfMemory};
|
|
|
|
\\
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const a: ?NextError!i32 = foo();
|
|
|
|
\\}
|
|
|
|
\\
|
|
|
|
\\fn foo() ?OtherError!i32 {
|
|
|
|
\\ return null;
|
|
|
|
\\}
|
|
|
|
,
|
2018-06-19 15:51:46 -07:00
|
|
|
".tmp_source.zig:5:34: error: expected type '?NextError!i32', found '?OtherError!i32'",
|
|
|
|
".tmp_source.zig:5:34: note: optional type child 'OtherError!i32' cannot cast into optional type child 'NextError!i32'",
|
|
|
|
".tmp_source.zig:5:34: note: error set 'OtherError' cannot cast into error set 'NextError'",
|
2018-06-02 12:20:51 -07:00
|
|
|
".tmp_source.zig:2:26: note: 'error.OutOfMemory' not a member of destination error set",
|
|
|
|
);
|
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid deref on switch target",
|
2018-04-22 20:46:55 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ var tile = Tile.Empty;
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ switch (tile.*) {
|
2018-04-22 20:46:55 -07:00
|
|
|
\\ Tile.Empty => {},
|
|
|
|
\\ Tile.Filled => {},
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
\\const Tile = enum {
|
|
|
|
\\ Empty,
|
|
|
|
\\ Filled,
|
|
|
|
\\};
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:17: error: invalid deref on switch target",
|
|
|
|
);
|
2018-04-22 20:46:55 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid field access in comptime",
|
2018-04-20 23:00:14 -07:00
|
|
|
\\comptime { var x = doesnt_exist.whatever; }
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:20: error: use of undeclared identifier 'doesnt_exist'",
|
|
|
|
);
|
2018-04-20 23:00:14 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"suspend inside suspend block",
|
|
|
|
\\const std = @import("std",);
|
2018-04-18 19:21:54 -07:00
|
|
|
\\
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var buf: [500]u8 = undefined;
|
|
|
|
\\ var a = &std.heap.FixedBufferAllocator.init(buf[0..]).allocator;
|
|
|
|
\\ const p = (async<a> foo()) catch unreachable;
|
|
|
|
\\ cancel p;
|
|
|
|
\\}
|
|
|
|
\\
|
|
|
|
\\async fn foo() void {
|
2018-07-29 01:18:54 -07:00
|
|
|
\\ suspend {
|
|
|
|
\\ suspend {
|
2018-04-18 19:21:54 -07:00
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:12:9: error: cannot suspend inside suspend block",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:11:5: note: other suspend block here",
|
|
|
|
);
|
2018-04-18 19:21:54 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"assign inline fn to non-comptime var",
|
2018-04-12 13:26:23 -07:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var a = b;
|
|
|
|
\\}
|
|
|
|
\\inline fn b() void { }
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: functions marked inline must be stored in const or comptime var",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:8: note: declared here",
|
|
|
|
);
|
2018-04-12 13:26:23 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong type passed to @panic",
|
2018-03-27 12:07:45 -07:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var e = error.Foo;
|
|
|
|
\\ @panic(e);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:12: error: expected type '[]const u8', found 'error{Foo}'",
|
|
|
|
);
|
2018-03-27 12:07:45 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@tagName used on union with no associated enum tag",
|
2018-03-07 11:35:48 -08:00
|
|
|
\\const FloatInt = extern union {
|
|
|
|
\\ Float: f32,
|
|
|
|
\\ Int: i32,
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var fi = FloatInt{.Float = 123.45};
|
|
|
|
\\ var tagName = @tagName(fi);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:7:19: error: union has no associated enum",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:18: note: declared here",
|
|
|
|
);
|
2018-03-07 11:35:48 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"returning error from void async function",
|
|
|
|
\\const std = @import("std",);
|
2018-03-06 18:44:27 -08:00
|
|
|
\\export fn entry() void {
|
2018-03-21 16:56:41 -07:00
|
|
|
\\ const p = async<std.debug.global_allocator> amain() catch unreachable;
|
2018-03-06 18:44:27 -08:00
|
|
|
\\}
|
|
|
|
\\async fn amain() void {
|
|
|
|
\\ return error.ShouldBeCompileError;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:6:17: error: expected type 'void', found 'error{ShouldBeCompileError}'",
|
|
|
|
);
|
2018-03-06 18:44:27 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"var not allowed in structs",
|
2018-03-06 15:24:49 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var s = (struct{v: var}){.v=i32(10)};
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:23: error: invalid token: 'var'",
|
|
|
|
);
|
2018-03-06 15:24:49 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@ptrCast discards const qualifier",
|
2018-03-06 13:37:03 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const x: i32 = 1234;
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ const y = @ptrCast(*i32, &x);
|
2018-03-06 13:37:03 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:15: error: cast discards const qualifier",
|
|
|
|
);
|
2018-03-06 13:37:03 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"comptime slice of undefined pointer non-zero len",
|
2018-02-16 12:22:29 -08:00
|
|
|
\\export fn entry() void {
|
2018-06-04 19:11:14 -07:00
|
|
|
\\ const slice = ([*]i32)(undefined)[0..1];
|
2018-02-16 12:22:29 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-06-04 19:11:14 -07:00
|
|
|
".tmp_source.zig:2:38: error: non-zero length slice of undefined pointer",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2018-02-16 12:22:29 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"type checking function pointers",
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn a(b: fn (*const u8) void) void {
|
2018-02-14 13:24:43 -08:00
|
|
|
\\ b('a');
|
|
|
|
\\}
|
|
|
|
\\fn c(d: u8) void {
|
|
|
|
\\ @import("std").debug.warn("{c}\n", d);
|
|
|
|
\\}
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ a(c);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:8:7: error: expected type 'fn(*const u8) void', found 'fn(u8) void'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2018-02-14 13:24:43 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"no else prong on switch on global error set",
|
2018-02-09 10:49:58 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo(error.A);
|
|
|
|
\\}
|
|
|
|
\\fn foo(a: error) void {
|
|
|
|
\\ switch (a) {
|
|
|
|
\\ error.A => {},
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:5:5: error: else prong required when switching on type 'error'",
|
|
|
|
);
|
2018-02-09 10:49:58 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"inferred error set with no returned error",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo() catch unreachable;
|
|
|
|
\\}
|
|
|
|
\\fn foo() !void {
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:11: error: function with inferred error set must return at least one possible error",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"error not handled in switch",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo(452) catch |err| switch (err) {
|
|
|
|
\\ error.Foo => {},
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
\\fn foo(x: i32) !void {
|
|
|
|
\\ switch (x) {
|
|
|
|
\\ 0 ... 10 => return error.Foo,
|
|
|
|
\\ 11 ... 20 => return error.Bar,
|
|
|
|
\\ 21 ... 30 => return error.Baz,
|
|
|
|
\\ else => {},
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:26: error: error.Baz not handled in switch",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:26: error: error.Bar not handled in switch",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"duplicate error in switch",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo(452) catch |err| switch (err) {
|
|
|
|
\\ error.Foo => {},
|
|
|
|
\\ error.Bar => {},
|
|
|
|
\\ error.Foo => {},
|
|
|
|
\\ else => {},
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
\\fn foo(x: i32) !void {
|
|
|
|
\\ switch (x) {
|
|
|
|
\\ 0 ... 10 => return error.Foo,
|
|
|
|
\\ 11 ... 20 => return error.Bar,
|
|
|
|
\\ else => {},
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:5:14: error: duplicate switch value: '@typeOf(foo).ReturnType.ErrorSet.Foo'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:14: note: other value is here",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-07-06 13:20:46 -07:00
|
|
|
cases.add("invalid cast from integral type to enum",
|
2018-07-04 10:27:10 -07:00
|
|
|
\\const E = enum(usize) { One, Two };
|
|
|
|
\\
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo(1);
|
|
|
|
\\}
|
|
|
|
\\
|
|
|
|
\\fn foo(x: usize) void {
|
|
|
|
\\ switch (x) {
|
|
|
|
\\ E.One => {},
|
|
|
|
\\ }
|
|
|
|
\\}
|
2018-07-06 13:20:46 -07:00
|
|
|
, ".tmp_source.zig:9:10: error: expected type 'usize', found 'E'");
|
2018-07-04 10:27:10 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"range operator in switch used on error set",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ try foo(452) catch |err| switch (err) {
|
|
|
|
\\ error.A ... error.B => {},
|
|
|
|
\\ else => {},
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
\\fn foo(x: i32) !void {
|
|
|
|
\\ switch (x) {
|
|
|
|
\\ 0 ... 10 => return error.Foo,
|
|
|
|
\\ 11 ... 20 => return error.Bar,
|
|
|
|
\\ else => {},
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:17: error: operator not allowed for errors",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"inferring error set of function pointer",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ const z: ?fn()!void = null;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: inferring error set of return type valid only for function definitions",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"access non-existent member of error set",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\const Foo = error{A};
|
|
|
|
\\comptime {
|
|
|
|
\\ const z = Foo.Bar;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:18: error: no error named 'Bar' in 'Foo'",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"error union operator with non error set LHS",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ const z = i32!i32;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: expected error set type, found type 'i32'",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"error equality but sets have no common members",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\const Set1 = error{A, C};
|
|
|
|
\\const Set2 = error{B, D};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo(Set1.A);
|
|
|
|
\\}
|
|
|
|
\\fn foo(x: Set1) void {
|
|
|
|
\\ if (x == Set2.B) {
|
|
|
|
\\
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:7:11: error: error sets 'Set1' and 'Set2' have no common errors",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"only equality binary operator allowed for error sets",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ const z = error.A > error.B;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:23: error: operator not allowed for errors",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"explicit error set cast known at comptime violates error sets",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\const Set1 = error {A, B};
|
|
|
|
\\const Set2 = error {A, C};
|
|
|
|
\\comptime {
|
|
|
|
\\ var x = Set1.B;
|
2018-06-18 14:25:29 -07:00
|
|
|
\\ var y = @errSetCast(Set2, x);
|
2018-02-08 20:44:21 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-06-18 14:25:29 -07:00
|
|
|
".tmp_source.zig:5:13: error: error.B not a member of error set 'Set2'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"cast error union of global error set to error union of smaller error set",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\const SmallErrorSet = error{A};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var x: SmallErrorSet!i32 = foo();
|
|
|
|
\\}
|
|
|
|
\\fn foo() error!i32 {
|
|
|
|
\\ return error.B;
|
|
|
|
\\}
|
|
|
|
,
|
2018-06-19 15:51:46 -07:00
|
|
|
".tmp_source.zig:3:35: error: expected type 'SmallErrorSet!i32', found 'error!i32'",
|
|
|
|
".tmp_source.zig:3:35: note: error set 'error' cannot cast into error set 'SmallErrorSet'",
|
|
|
|
".tmp_source.zig:3:35: note: cannot cast global error set into smaller set",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"cast global error set to error set",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\const SmallErrorSet = error{A};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var x: SmallErrorSet = foo();
|
|
|
|
\\}
|
|
|
|
\\fn foo() error {
|
|
|
|
\\ return error.B;
|
|
|
|
\\}
|
|
|
|
,
|
2018-06-19 15:51:46 -07:00
|
|
|
".tmp_source.zig:3:31: error: expected type 'SmallErrorSet', found 'error'",
|
|
|
|
".tmp_source.zig:3:31: note: cannot cast global error set into smaller set",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"recursive inferred error set",
|
2018-02-08 20:44:21 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo() catch unreachable;
|
|
|
|
\\}
|
|
|
|
\\fn foo() !void {
|
|
|
|
\\ try foo();
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:5:5: error: cannot resolve inferred error set '@typeOf(foo).ReturnType.ErrorSet': function 'foo' not fully analyzed yet",
|
|
|
|
);
|
2018-02-08 20:44:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit cast of error set not a subset",
|
2018-02-08 18:54:44 -08:00
|
|
|
\\const Set1 = error{A, B};
|
|
|
|
\\const Set2 = error{A, C};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo(Set1.B);
|
|
|
|
\\}
|
|
|
|
\\fn foo(set1: Set1) void {
|
|
|
|
\\ var x: Set2 = set1;
|
|
|
|
\\}
|
|
|
|
,
|
2018-06-19 15:51:46 -07:00
|
|
|
".tmp_source.zig:7:19: error: expected type 'Set2', found 'Set1'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:23: note: 'error.B' not a member of destination error set",
|
|
|
|
);
|
2018-02-08 18:54:44 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"int to err global invalid number",
|
2018-06-18 15:48:29 -07:00
|
|
|
\\const Set1 = error{
|
|
|
|
\\ A,
|
|
|
|
\\ B,
|
|
|
|
\\};
|
2018-02-08 18:54:44 -08:00
|
|
|
\\comptime {
|
2018-06-18 15:48:29 -07:00
|
|
|
\\ var x: u16 = 3;
|
|
|
|
\\ var y = @intToError(x);
|
2018-02-08 18:54:44 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-06-18 15:48:29 -07:00
|
|
|
".tmp_source.zig:7:13: error: integer value 3 represents no error",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2018-02-08 18:54:44 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"int to err non global invalid number",
|
2018-06-18 15:48:29 -07:00
|
|
|
\\const Set1 = error{
|
|
|
|
\\ A,
|
|
|
|
\\ B,
|
|
|
|
\\};
|
|
|
|
\\const Set2 = error{
|
|
|
|
\\ A,
|
|
|
|
\\ C,
|
|
|
|
\\};
|
2018-02-08 18:54:44 -08:00
|
|
|
\\comptime {
|
2018-06-18 15:48:29 -07:00
|
|
|
\\ var x = @errorToInt(Set1.B);
|
|
|
|
\\ var y = @errSetCast(Set2, @intToError(x));
|
2018-02-08 18:54:44 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-06-18 15:48:29 -07:00
|
|
|
".tmp_source.zig:11:13: error: error.B not a member of error set 'Set2'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2018-02-08 18:54:44 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberCount of error",
|
2018-02-07 23:08:45 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @memberCount(error);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:9: error: global error set member count not available at comptime",
|
|
|
|
);
|
2018-02-07 23:08:45 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"duplicate error value in error set",
|
2018-02-07 23:08:45 -08:00
|
|
|
\\const Foo = error {
|
|
|
|
\\ Bar,
|
|
|
|
\\ Bar,
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const a: Foo = undefined;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: duplicate error: 'Bar'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: note: other error here",
|
|
|
|
);
|
2018-02-07 23:08:45 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"cast negative integer literal to usize",
|
2018-02-05 06:26:39 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const x = usize(-10);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:21: error: cannot cast negative value -10 to unsigned integer type 'usize'",
|
|
|
|
);
|
2018-02-05 06:26:39 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"use invalid number literal as array index",
|
2018-01-31 08:13:39 -08:00
|
|
|
\\var v = 25;
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ var arr: [v]u8 = undefined;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:1: error: unable to infer variable type",
|
|
|
|
);
|
2018-01-31 08:13:39 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"duplicate struct field",
|
2018-01-30 08:52:03 -08:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ Bar: i32,
|
|
|
|
\\ Bar: usize,
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const a: Foo = undefined;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: duplicate struct field: 'Bar'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: note: other field here",
|
|
|
|
);
|
2018-01-30 08:52:03 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"duplicate union field",
|
2018-01-30 08:52:03 -08:00
|
|
|
\\const Foo = union {
|
|
|
|
\\ Bar: i32,
|
|
|
|
\\ Bar: usize,
|
|
|
|
\\};
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const a: Foo = undefined;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: duplicate union field: 'Bar'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: note: other field here",
|
|
|
|
);
|
2018-01-30 08:52:03 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"duplicate enum field",
|
2018-01-30 08:52:03 -08:00
|
|
|
\\const Foo = enum {
|
|
|
|
\\ Bar,
|
|
|
|
\\ Bar,
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\export fn entry() void {
|
|
|
|
\\ const a: Foo = undefined;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: duplicate enum field: 'Bar'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: note: other field here",
|
|
|
|
);
|
2018-01-30 08:52:03 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"calling function with naked calling convention",
|
2018-01-29 11:01:12 -08:00
|
|
|
\\export fn entry() void {
|
|
|
|
\\ foo();
|
|
|
|
\\}
|
|
|
|
\\nakedcc fn foo() void { }
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: unable to call function with naked calling convention",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:9: note: declared here",
|
|
|
|
);
|
2018-01-29 11:01:12 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"function with invalid return type",
|
2018-01-26 07:37:18 -08:00
|
|
|
\\export fn foo() boid {}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:17: error: use of undeclared identifier 'boid'",
|
|
|
|
);
|
2018-01-26 07:37:18 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"function with non-extern non-packed enum parameter",
|
2018-01-22 19:24:07 -08:00
|
|
|
\\const Foo = enum { A, B, C };
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry(foo: Foo) void { }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'",
|
|
|
|
);
|
2018-01-22 19:24:07 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"function with non-extern non-packed struct parameter",
|
2018-01-22 19:24:07 -08:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B: f32,
|
|
|
|
\\ C: bool,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry(foo: Foo) void { }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:6:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'",
|
|
|
|
);
|
2018-01-22 19:24:07 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"function with non-extern non-packed union parameter",
|
2018-01-22 19:24:07 -08:00
|
|
|
\\const Foo = union {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B: f32,
|
|
|
|
\\ C: bool,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry(foo: Foo) void { }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:6:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'",
|
|
|
|
);
|
2018-01-22 19:24:07 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch on enum with 1 field with no prongs",
|
2018-01-21 11:44:24 -08:00
|
|
|
\\const Foo = enum { M };
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2018-01-21 11:44:24 -08:00
|
|
|
\\ var f = Foo.M;
|
|
|
|
\\ switch (f) {}
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: enumeration value 'Foo.M' not handled in switch",
|
|
|
|
);
|
2018-01-21 11:44:24 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"shift by negative comptime integer",
|
2018-01-18 14:47:21 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ var a = 1 >> -1;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:18: error: shift by negative value -1",
|
|
|
|
);
|
2018-01-18 14:47:21 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@panic called at compile time",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2018-01-18 14:15:36 -08:00
|
|
|
\\ comptime {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ @panic("aoeu",);
|
2018-01-18 14:15:36 -08:00
|
|
|
\\ }
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: encountered @panic at compile-time",
|
|
|
|
);
|
2018-01-18 14:15:36 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong return type for main",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\pub fn main() f32 { }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
"error: expected return type of main to be 'u8', 'noreturn', 'void', or '!void'",
|
|
|
|
);
|
2018-01-14 21:01:02 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"double ?? on main return value",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\pub fn main() ??void {
|
2018-01-14 21:01:02 -08:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
"error: expected return type of main to be 'u8', 'noreturn', 'void', or '!void'",
|
|
|
|
);
|
2018-01-14 21:01:02 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"bad identifier in function with struct defined inside function which references local const",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2018-01-06 21:20:26 -08:00
|
|
|
\\ const BlockKind = u32;
|
|
|
|
\\
|
|
|
|
\\ const Block = struct {
|
|
|
|
\\ kind: BlockKind,
|
|
|
|
\\ };
|
|
|
|
\\
|
|
|
|
\\ bogus;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:8:5: error: use of undeclared identifier 'bogus'",
|
|
|
|
);
|
2018-01-06 21:20:26 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"labeled break not found",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-20 19:55:24 -08:00
|
|
|
\\ blah: while (true) {
|
|
|
|
\\ while (true) {
|
|
|
|
\\ break :outer;
|
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:4:13: error: label not found: 'outer'",
|
|
|
|
);
|
2017-12-20 19:55:24 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"labeled continue not found",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-20 19:55:24 -08:00
|
|
|
\\ var i: usize = 0;
|
|
|
|
\\ blah: while (i < 10) : (i += 1) {
|
|
|
|
\\ while (true) {
|
|
|
|
\\ continue :outer;
|
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:13: error: labeled loop not found: 'outer'",
|
|
|
|
);
|
2017-12-20 19:55:24 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"attempt to use 0 bit type in extern fn",
|
2018-05-31 07:56:59 -07:00
|
|
|
\\extern fn foo(ptr: extern fn(*void) void) void;
|
2017-12-19 15:21:42 -08:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-19 15:21:42 -08:00
|
|
|
\\ foo(bar);
|
|
|
|
\\}
|
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\extern fn bar(x: *void) void { }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:7:18: error: parameter of type '*void' has 0 bits; not allowed in function with calling convention 'ccc'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-12-19 15:21:42 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - block statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - block expr",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ _ = {};
|
|
|
|
\\ var good = {};
|
|
|
|
\\ _ = {}
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - comptime statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ comptime {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ comptime ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - comptime expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ _ = comptime {};
|
|
|
|
\\ var good = {};
|
|
|
|
\\ _ = comptime {}
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - defer",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ defer {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ defer ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - if statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ if(true) {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ if(true) ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - if expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ _ = if(true) {};
|
|
|
|
\\ var good = {};
|
|
|
|
\\ _ = if(true) {}
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - if-else statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ if(true) {} else {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ if(true) ({}) else ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - if-else expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ _ = if(true) {} else {};
|
|
|
|
\\ var good = {};
|
|
|
|
\\ _ = if(true) {} else {}
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - if-else-if statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ if(true) {} else if(true) {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ if(true) ({}) else if(true) ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - if-else-if expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ _ = if(true) {} else if(true) {};
|
|
|
|
\\ var good = {};
|
|
|
|
\\ _ = if(true) {} else if(true) {}
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - if-else-if-else statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ if(true) {} else if(true) {} else {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ if(true) ({}) else if(true) ({}) else ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - if-else-if-else expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ _ = if(true) {} else if(true) {} else {};
|
|
|
|
\\ var good = {};
|
|
|
|
\\ _ = if(true) {} else if(true) {} else {}
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - test statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-05-03 14:23:11 -07:00
|
|
|
\\ if (foo()) |_| {}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var good = {};
|
2017-05-03 14:23:11 -07:00
|
|
|
\\ if (foo()) |_| ({})
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - test expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-05-03 14:23:11 -07:00
|
|
|
\\ _ = if (foo()) |_| {};
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var good = {};
|
2017-05-03 14:23:11 -07:00
|
|
|
\\ _ = if (foo()) |_| {}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - while statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ while(true) {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ while(true) ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - while expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ _ = while(true) {};
|
|
|
|
\\ var good = {};
|
|
|
|
\\ _ = while(true) {}
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - while-continue statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-05-03 15:12:07 -07:00
|
|
|
\\ while(true):({}) {}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var good = {};
|
2017-05-03 15:12:07 -07:00
|
|
|
\\ while(true):({}) ({})
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - while-continue expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-05-03 15:12:07 -07:00
|
|
|
\\ _ = while(true):({}) {};
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var good = {};
|
2017-05-03 15:12:07 -07:00
|
|
|
\\ _ = while(true):({}) {}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - for statement",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ for(foo()) {}
|
|
|
|
\\ var good = {};
|
|
|
|
\\ for(foo()) ({})
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit semicolon - for expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ _ = for(foo()) {};
|
|
|
|
\\ var good = {};
|
|
|
|
\\ _ = for(foo()) {}
|
|
|
|
\\ var bad = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: expected token ';', found 'var'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"multiple function definitions",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn a() void {}
|
|
|
|
\\fn a() void {}
|
|
|
|
\\export fn entry() void { a(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:1: error: redefinition of 'a'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"unreachable with return",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn a() noreturn {return;}
|
|
|
|
\\export fn entry() void { a(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:18: error: expected type 'noreturn', found 'void'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"control reaches end of non-void function",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn a() i32 {}
|
|
|
|
\\export fn entry() void { _ = a(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:12: error: expected type 'i32', found 'void'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"undefined function call",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn a() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ b();
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: use of undeclared identifier 'b'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong number of arguments",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn a() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ b(1);
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn b(a: i32, b: i32, c: i32) void { }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:6: error: expected 3 arguments, found 1",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid type",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn a() bogus {}
|
|
|
|
\\export fn entry() void { _ = a(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:8: error: use of undeclared identifier 'bogus'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"pointer to noreturn",
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn a() *noreturn {}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void { _ = a(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:1:8: error: pointer to noreturn not allowed",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"unreachable code",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn a() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return;
|
|
|
|
\\ b();
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn b() void {}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: unreachable code",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"bad import",
|
|
|
|
\\const bogus = @import("bogus-does-not-exist.zig",);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void { bogus.bogo(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:15: error: unable to find 'bogus-does-not-exist.zig'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"undeclared identifier",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn a() void {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ b +
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ c;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:5: error: use of undeclared identifier 'b'",
|
|
|
|
".tmp_source.zig:4:5: error: use of undeclared identifier 'c'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"parameter redeclaration",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(a : i32, a : i32) void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void { f(1, 2); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:15: error: redeclaration of variable 'a'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"local variable redeclaration",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const a : i32 = 0;
|
|
|
|
\\ const a = 0;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: redeclaration of variable 'a'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"local variable redeclares parameter",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(a : i32) void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const a = 0;
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void { f(1); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: redeclaration of variable 'a'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"variable has wrong type",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() i32 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const a = c"a";
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return a;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-06-03 22:09:15 -07:00
|
|
|
".tmp_source.zig:3:12: error: expected type 'i32', found '[*]const u8'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"if condition is bool, not int",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ if (0) {}
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:9: error: integer value 0 cannot be implicitly casted to type 'bool'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"assign unreachable",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const a = return;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: unreachable code",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"unreachable variable",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const a: noreturn = {};
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:14: error: variable of type 'noreturn' not allowed",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"unreachable parameter",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(a: noreturn) void {}
|
|
|
|
\\export fn entry() void { f(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:9: error: parameter of type 'noreturn' not allowed",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"bad assignment target",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ 3 = 3;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:7: error: cannot assign to constant",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"assign to constant variable",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const a = 3;
|
|
|
|
\\ a = 4;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:7: error: cannot assign to constant",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"use of undeclared identifier",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ b = 3;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: use of undeclared identifier 'b'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"const is a statement, not an expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ (const a = 0);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:6: error: invalid token: 'const'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"array access of undeclared identifier",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ i[i] = i[i];
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: use of undeclared identifier 'i'",
|
|
|
|
".tmp_source.zig:2:12: error: use of undeclared identifier 'i'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"array access of non array",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var bad : bool = undefined;
|
|
|
|
\\ bad[bad] = bad[bad];
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:8: error: array access of non-array type 'bool'",
|
|
|
|
".tmp_source.zig:3:19: error: array access of non-array type 'bool'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"array access with non integer index",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var array = "aoeu";
|
|
|
|
\\ var bad = false;
|
|
|
|
\\ array[bad] = array[bad];
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:4:11: error: expected type 'usize', found 'bool'",
|
|
|
|
".tmp_source.zig:4:24: error: expected type 'usize', found 'bool'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"write to const global variable",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const x : i32 = 99;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ x = 1;
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void { f(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:7: error: cannot assign to constant",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"missing else clause",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(b: bool) void {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ const x : i32 = if (b) h: { break :h 1; };
|
|
|
|
\\ const y = if (b) h: { break :h i32(1); };
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void { f(true); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:42: error: integer value 1 cannot be implicitly casted to type 'void'",
|
|
|
|
".tmp_source.zig:3:15: error: incompatible types: 'i32' and 'void'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"direct struct loop",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const A = struct { a : A, };
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(A); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:11: error: struct 'A' contains itself",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"indirect struct loop",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const A = struct { b : B, };
|
|
|
|
\\const B = struct { c : C, };
|
|
|
|
\\const C = struct { a : A, };
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(A); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:11: error: struct 'A' contains itself",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid struct field",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const A = struct { x : i32, };
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var a : A = undefined;
|
|
|
|
\\ a.foo = 1;
|
|
|
|
\\ const y = a.bar;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:6: error: no member named 'foo' in struct 'A'",
|
|
|
|
".tmp_source.zig:5:16: error: no member named 'bar' in struct 'A'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"redefinition of struct",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const A = struct { x : i32, };
|
|
|
|
\\const A = struct { y : i32, };
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:1: error: redefinition of 'A'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"redefinition of enums",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const A = enum {};
|
|
|
|
\\const A = enum {};
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:1: error: redefinition of 'A'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"redefinition of global variables",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\var a : i32 = 1;
|
|
|
|
\\var a : i32 = 2;
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:1: error: redefinition of 'a'",
|
|
|
|
".tmp_source.zig:1:1: note: previous definition is here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"duplicate field in struct value expression",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const A = struct {
|
|
|
|
\\ x : i32,
|
|
|
|
\\ y : i32,
|
|
|
|
\\ z : i32,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const a = A {
|
|
|
|
\\ .z = 1,
|
|
|
|
\\ .y = 2,
|
|
|
|
\\ .x = 3,
|
|
|
|
\\ .z = 4,
|
|
|
|
\\ };
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:11:9: error: duplicate field",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"missing field in struct value expression",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const A = struct {
|
|
|
|
\\ x : i32,
|
|
|
|
\\ y : i32,
|
|
|
|
\\ z : i32,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ // we want the error on the '{' not the 'A' because
|
|
|
|
\\ // the A could be a complicated expression
|
|
|
|
\\ const a = A {
|
|
|
|
\\ .z = 4,
|
|
|
|
\\ .y = 2,
|
|
|
|
\\ };
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:9:17: error: missing field: 'x'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid field in struct value expression",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const A = struct {
|
|
|
|
\\ x : i32,
|
|
|
|
\\ y : i32,
|
|
|
|
\\ z : i32,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const a = A {
|
|
|
|
\\ .z = 4,
|
|
|
|
\\ .y = 2,
|
|
|
|
\\ .foo = 42,
|
|
|
|
\\ };
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:10:9: error: no member named 'foo' in struct 'A'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid break expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ break;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: break expression outside loop",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid continue expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ continue;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: continue expression outside loop",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid maybe type",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-05-03 14:23:11 -07:00
|
|
|
\\ if (true) |x| { }
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-06-09 20:42:14 -07:00
|
|
|
".tmp_source.zig:2:9: error: expected optional type, found 'bool'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"cast unreachable",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f() i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return i32(return 1);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void { _ = f(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:15: error: unreachable code",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid builtin fn",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f() @bogus(foo) {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void { _ = f(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:8: error: invalid builtin function: 'bogus'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"top level decl dependency loop",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const a : @typeOf(b) = 0;
|
|
|
|
\\const b : @typeOf(a) = 0;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const c = a + b;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:1: error: 'a' depends on itself",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"noalias on non pointer param",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(noalias x: i32) void {}
|
|
|
|
\\export fn entry() void { f(1234); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:6: error: noalias on non-pointer parameter",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"struct init syntax for array",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const foo = []u16{.x = 1024,};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:18: error: type '[]u16' does not support struct initialization syntax",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"type variables must be constant",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\var foo = u8;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() foo {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return 1;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:1: error: variable of type 'type' must be constant",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"variables shadowing types",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {};
|
|
|
|
\\const Bar = struct {};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(Foo: i32) void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var Bar : i32 = undefined;
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ f(1234);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:6: error: redefinition of 'Foo'",
|
|
|
|
".tmp_source.zig:1:1: note: previous definition is here",
|
|
|
|
".tmp_source.zig:5:5: error: redefinition of 'Bar'",
|
|
|
|
".tmp_source.zig:2:1: note: previous definition is here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch expression - missing enumeration prong",
|
2017-05-07 09:07:35 -07:00
|
|
|
\\const Number = enum {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\ Three,
|
|
|
|
\\ Four,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(n: Number) i32 {
|
2017-05-07 09:07:35 -07:00
|
|
|
\\ switch (n) {
|
|
|
|
\\ Number.One => 1,
|
|
|
|
\\ Number.Two => 2,
|
|
|
|
\\ Number.Three => i32(3),
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:8:5: error: enumeration value 'Number.Four' not handled in switch",
|
|
|
|
);
|
2017-05-07 09:07:35 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch expression - duplicate enumeration prong",
|
2017-05-07 09:07:35 -07:00
|
|
|
\\const Number = enum {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\ Three,
|
|
|
|
\\ Four,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(n: Number) i32 {
|
2017-05-07 09:07:35 -07:00
|
|
|
\\ switch (n) {
|
|
|
|
\\ Number.One => 1,
|
|
|
|
\\ Number.Two => 2,
|
|
|
|
\\ Number.Three => i32(3),
|
|
|
|
\\ Number.Four => 4,
|
|
|
|
\\ Number.Two => 2,
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:13:15: error: duplicate switch value",
|
|
|
|
".tmp_source.zig:10:15: note: other value is here",
|
|
|
|
);
|
2017-05-07 10:40:35 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch expression - duplicate enumeration prong when else present",
|
2017-05-07 10:40:35 -07:00
|
|
|
\\const Number = enum {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\ Three,
|
|
|
|
\\ Four,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(n: Number) i32 {
|
2017-05-07 10:40:35 -07:00
|
|
|
\\ switch (n) {
|
|
|
|
\\ Number.One => 1,
|
|
|
|
\\ Number.Two => 2,
|
|
|
|
\\ Number.Three => i32(3),
|
|
|
|
\\ Number.Four => 4,
|
|
|
|
\\ Number.Two => 2,
|
|
|
|
\\ else => 10,
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:13:15: error: duplicate switch value",
|
|
|
|
".tmp_source.zig:10:15: note: other value is here",
|
|
|
|
);
|
2017-05-07 09:07:35 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch expression - multiple else prongs",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(x: u32) void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const value: bool = switch (x) {
|
|
|
|
\\ 1234 => false,
|
|
|
|
\\ else => true,
|
|
|
|
\\ else => true,
|
|
|
|
\\ };
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ f(1234);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:9: error: multiple else prongs in switch expression",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch expression - non exhaustive integer prongs",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo(x: u8) void {
|
2017-05-07 09:07:35 -07:00
|
|
|
\\ switch (x) {
|
|
|
|
\\ 0 => {},
|
|
|
|
\\ }
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2017-05-07 09:07:35 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: error: switch must handle all possibilities",
|
|
|
|
);
|
2017-05-07 09:07:35 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch expression - duplicate or overlapping integer value",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo(x: u8) u8 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return switch (x) {
|
2017-05-07 09:07:35 -07:00
|
|
|
\\ 0 ... 100 => u8(0),
|
|
|
|
\\ 101 ... 200 => 1,
|
|
|
|
\\ 201, 203 ... 207 => 2,
|
|
|
|
\\ 206 ... 255 => 3,
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-05-07 09:07:35 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2017-05-07 09:07:35 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:6:9: error: duplicate switch value",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:5:14: note: previous value is here",
|
|
|
|
);
|
2017-05-07 09:07:35 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch expression - switch on pointer type with no else",
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn foo(x: *u8) void {
|
2017-05-07 09:07:35 -07:00
|
|
|
\\ switch (x) {
|
|
|
|
\\ &y => {},
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
\\const y: u8 = 100;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2017-05-07 09:07:35 -07:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:2:5: error: else prong required when switching on type '*u8'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-05-07 09:07:35 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"global variable initializer must be constant expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\extern fn foo() i32;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const x = foo();
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() i32 { return x; }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:11: error: unable to evaluate constant expression",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"array concatenation with wrong type",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const src = "aoeu";
|
|
|
|
\\const derp = usize(1234);
|
|
|
|
\\const a = derp ++ "foo";
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(a)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:11: error: expected array or C string literal, found 'usize'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non compile time array concatenation",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f() []u8 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return s ++ "foo";
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\var s: [10]u8 = undefined;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:12: error: unable to evaluate constant expression",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@cImport with bogus include",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const c = @cImport(@cInclude("bogus.h"));
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(c.bogo)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:11: error: C import failed",
|
|
|
|
".h:1:10: note: 'bogus.h' file not found",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"address of number literal",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const x = 3;
|
|
|
|
\\const y = &x;
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn foo() *const i32 { return y; }
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-06-05 02:14:43 -07:00
|
|
|
".tmp_source.zig:3:30: error: expected type '*const i32', found '*const comptime_int'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"integer overflow error",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const x : u8 = 300;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(x)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:16: error: integer value 300 cannot be implicitly casted to type 'u8'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-06-29 11:52:25 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid shift amount error",
|
|
|
|
\\const x : u8 = 2;
|
|
|
|
\\fn f() u16 {
|
|
|
|
\\ return x << 8;
|
|
|
|
\\}
|
|
|
|
\\export fn entry() u16 { return f(); }
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:14: error: RHS of shift is too large for LHS type",
|
|
|
|
".tmp_source.zig:3:17: note: value 8 cannot fit into type u3",
|
|
|
|
);
|
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"incompatible number literals",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const x = 2 == 2.0;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(x)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-06-05 02:14:43 -07:00
|
|
|
".tmp_source.zig:1:11: error: integer value 2 cannot be implicitly casted to type 'comptime_float'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"missing function call param",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ a: i32,
|
|
|
|
\\ b: i32,
|
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ fn member_a(foo: *const Foo) i32 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return foo.a;
|
|
|
|
\\ }
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ fn member_b(foo: *const Foo) i32 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return foo.b;
|
|
|
|
\\ }
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\const member_fn_type = @typeOf(Foo.member_a);
|
|
|
|
\\const members = []member_fn_type {
|
|
|
|
\\ Foo.member_a,
|
|
|
|
\\ Foo.member_b,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn f(foo: *const Foo, index: usize) void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const result = members[index]();
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:20:34: error: expected 1 arguments, found 0",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"missing function name and param name",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn () void {}
|
|
|
|
\\fn f(i32) void {}
|
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:1: error: missing function name",
|
|
|
|
".tmp_source.zig:2:6: error: missing parameter name",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong function type",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\const fns = []fn() void { a, b, c };
|
|
|
|
\\fn a() i32 {return 0;}
|
|
|
|
\\fn b() i32 {return 1;}
|
|
|
|
\\fn c() i32 {return 2;}
|
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(fns)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:27: error: expected type 'fn() void', found 'fn() i32'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"extern function pointer mismatch",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\const fns = [](fn(i32)i32) { a, b, c };
|
|
|
|
\\pub fn a(x: i32) i32 {return x + 0;}
|
|
|
|
\\pub fn b(x: i32) i32 {return x + 1;}
|
|
|
|
\\export fn c(x: i32) i32 {return x + 2;}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(fns)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:36: error: expected type 'fn(i32) i32', found 'extern fn(i32) i32'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit cast from f64 to f32",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const x : f64 = 1.0;
|
|
|
|
\\const y : f32 = x;
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(y)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:17: error: expected type 'f32', found 'f64'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"colliding invalid top level functions",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn func() bogus {}
|
|
|
|
\\fn func() bogus {}
|
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(func)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:1: error: redefinition of 'func'",
|
|
|
|
".tmp_source.zig:1:11: error: use of undeclared identifier 'bogus'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"bogus compile var",
|
2017-05-01 10:12:38 -07:00
|
|
|
\\const x = @import("builtin").bogus;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(x)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:29: error: no member named 'bogus' in '",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non constant expression in array size outside function",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ y: [get()]u8,
|
|
|
|
\\};
|
|
|
|
\\var global_var: usize = 1;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn get() usize { return global_var; }
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(Foo)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:5:25: error: unable to evaluate constant expression",
|
|
|
|
".tmp_source.zig:2:12: note: called from here",
|
|
|
|
".tmp_source.zig:2:8: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"addition with non numbers",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ field: i32,
|
|
|
|
\\};
|
|
|
|
\\const x = Foo {.field = 1} + Foo {.field = 2};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(x)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:4:28: error: invalid operands to binary expression: 'Foo' and 'Foo'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"division by zero",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const lit_int_x = 1 / 0;
|
|
|
|
\\const lit_float_x = 1.0 / 0.0;
|
2017-05-06 20:13:12 -07:00
|
|
|
\\const int_x = u32(1) / u32(0);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const float_x = f32(1.0) / f32(0.0);
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry1() usize { return @sizeOf(@typeOf(lit_int_x)); }
|
|
|
|
\\export fn entry2() usize { return @sizeOf(@typeOf(lit_float_x)); }
|
|
|
|
\\export fn entry3() usize { return @sizeOf(@typeOf(int_x)); }
|
|
|
|
\\export fn entry4() usize { return @sizeOf(@typeOf(float_x)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:21: error: division by zero",
|
|
|
|
".tmp_source.zig:2:25: error: division by zero",
|
|
|
|
".tmp_source.zig:3:22: error: division by zero",
|
|
|
|
".tmp_source.zig:4:26: error: division by zero",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"normal string with newline",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const foo = "a
|
|
|
|
\\b";
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:13: error: newline not allowed in string literal",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid comparison for function pointers",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo() void {}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const invalid = foo > foo;
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(invalid)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:21: error: operator not allowed for type 'fn() void'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"generic function instance with non-constant expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo(comptime x: i32, y: i32) i32 { return x + y; }
|
|
|
|
\\fn test1(a: i32, b: i32) i32 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return foo(a, b);
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(test1)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:16: error: unable to evaluate constant expression",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
2018-06-09 20:42:14 -07:00
|
|
|
"assign null to non-optional pointer",
|
2018-05-31 07:56:59 -07:00
|
|
|
\\const a: *u8 = null;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(a)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:1:16: error: expected type '*u8', found '(null)'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"indexing an array of size zero",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const array = []u8{};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const pointer = &array[0];
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:27: error: index 0 outside array of size 0",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"compile time division by zero",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const y = foo(0);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo(x: u32) u32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return 1 / x;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(y)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:14: error: division by zero",
|
|
|
|
".tmp_source.zig:1:14: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"branch on undefined value",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const x = if (undefined) true else false;
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(x)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:15: error: use of undefined value",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-06-30 11:50:09 -07:00
|
|
|
cases.add(
|
|
|
|
"div on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a / a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"div assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a /= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"mod on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a % a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"mod assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a %= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"add on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a + a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"add assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a += a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"add wrap on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a +% a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"add wrap assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a +%= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"sub on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a - a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"sub assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a -= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"sub wrap on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a -% a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"sub wrap assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a -%= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"mult on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a * a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"mult assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a *= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"mult wrap on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a *% a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"mult wrap assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a *%= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"shift left on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a << 2;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"shift left assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a <<= 2;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"shift right on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a >> 2;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"shift left assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a >>= 2;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"bin and on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a & a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"bin and assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a &= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"bin or on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a | a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"bin or assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a |= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"bin xor on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a ^ a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"bin xor assign on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ a ^= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"equal on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a == a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"not equal on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a != a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"greater than on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a > a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"greater than equal on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a >= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"less than on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a < a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"less than equal on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = a <= a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"and on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: bool = undefined;
|
|
|
|
\\ _ = a and a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"or on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: bool = undefined;
|
|
|
|
\\ _ = a or a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"negate on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = -a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:10: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"negate wrap on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = -%a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:11: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"bin not on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: i64 = undefined;
|
|
|
|
\\ _ = ~a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:10: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"bool not on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: bool = undefined;
|
|
|
|
\\ _ = !a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:10: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"orelse on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: ?bool = undefined;
|
|
|
|
\\ _ = a orelse false;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:11: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"catch on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: error!bool = undefined;
|
|
|
|
\\ _ = a catch |err| false;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:11: error: use of undefined value",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"deref on undefined value",
|
|
|
|
\\comptime {
|
|
|
|
\\ var a: *u8 = undefined;
|
|
|
|
\\ _ = a.*;
|
|
|
|
\\}
|
|
|
|
,
|
2018-06-30 12:59:14 -07:00
|
|
|
".tmp_source.zig:3:9: error: use of undefined value",
|
2018-06-30 11:50:09 -07:00
|
|
|
);
|
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"endless loop in function evaluation",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const seventh_fib_number = fibbonaci(7);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn fibbonaci(x: i32) i32 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return fibbonaci(x - 1) + fibbonaci(x - 2);
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(seventh_fib_number)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:21: error: evaluation exceeded 1000 backwards branches",
|
|
|
|
".tmp_source.zig:3:21: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@embedFile with bogus file",
|
|
|
|
\\const resource = @embedFile("bogus.txt",);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(resource)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:29: error: unable to find '",
|
|
|
|
"bogus.txt'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-const expression in struct literal outside function",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ x: i32,
|
|
|
|
\\};
|
|
|
|
\\const a = Foo {.x = get_it()};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\extern fn get_it() i32;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(a)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:4:21: error: unable to evaluate constant expression",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-const expression function call with struct return value outside function",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ x: i32,
|
|
|
|
\\};
|
|
|
|
\\const a = get_it();
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn get_it() Foo {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ global_side_effect = true;
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return Foo {.x = 13};
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\var global_side_effect = false;
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(a)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:6:24: error: unable to evaluate constant expression",
|
|
|
|
".tmp_source.zig:4:17: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"undeclared identifier error should mark fn as impure",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ test_a_thing();
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn test_a_thing() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ bad_fn_call();
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: use of undeclared identifier 'bad_fn_call'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"illegal comparison of types",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bad_eql_1(a: []u8, b: []u8) bool {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return a == b;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2017-12-03 17:43:56 -08:00
|
|
|
\\const EnumWithData = union(enum) {
|
|
|
|
\\ One: void,
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ Two: i32,
|
|
|
|
\\};
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn bad_eql_2(a: *const EnumWithData, b: *const EnumWithData) bool {
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ return a.* == b.*;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry1() usize { return @sizeOf(@typeOf(bad_eql_1)); }
|
|
|
|
\\export fn entry2() usize { return @sizeOf(@typeOf(bad_eql_2)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:14: error: operator not allowed for type '[]u8'",
|
|
|
|
".tmp_source.zig:9:16: error: operator not allowed for type 'EnumWithData'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-const switch number literal",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const x = switch (bar()) {
|
|
|
|
\\ 1, 2 => 1,
|
|
|
|
\\ 3, 4 => 2,
|
|
|
|
\\ else => 3,
|
|
|
|
\\ };
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar() i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return 2;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:15: error: unable to infer expression type",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"atomic orderings of cmpxchg - failure stricter than success",
|
2017-05-01 10:12:38 -07:00
|
|
|
\\const AtomicOrder = @import("builtin").AtomicOrder;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var x: i32 = 1234;
|
2018-04-18 09:16:42 -07:00
|
|
|
\\ while (!@cmpxchgWeak(i32, &x, 1234, 5678, AtomicOrder.Monotonic, AtomicOrder.SeqCst)) {}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:4:81: error: failure atomic ordering must be no stricter than success",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"atomic orderings of cmpxchg - success Monotonic or stricter",
|
2017-05-01 10:12:38 -07:00
|
|
|
\\const AtomicOrder = @import("builtin").AtomicOrder;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var x: i32 = 1234;
|
2018-04-18 09:16:42 -07:00
|
|
|
\\ while (!@cmpxchgWeak(i32, &x, 1234, 5678, AtomicOrder.Unordered, AtomicOrder.Unordered)) {}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:4:58: error: success atomic ordering must be Monotonic or stricter",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"negation overflow in function evaluation",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const y = neg(-128);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn neg(x: i8) i8 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return -x;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(y)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:12: error: negation caused overflow",
|
|
|
|
".tmp_source.zig:1:14: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"add overflow in function evaluation",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const y = add(65530, 10);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn add(a: u16, b: u16) u16 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return a + b;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(y)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:14: error: operation caused overflow",
|
|
|
|
".tmp_source.zig:1:14: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"sub overflow in function evaluation",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const y = sub(10, 20);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn sub(a: u16, b: u16) u16 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return a - b;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(y)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:14: error: operation caused overflow",
|
|
|
|
".tmp_source.zig:1:14: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"mul overflow in function evaluation",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const y = mul(300, 6000);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn mul(a: u16, b: u16) u16 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return a * b;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(y)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:14: error: operation caused overflow",
|
|
|
|
".tmp_source.zig:1:14: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"truncate sign mismatch",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f() i8 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const x: u32 = 10;
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return @truncate(i8, x);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:26: error: expected signed integer type, found 'u32'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"try in function with non error return type",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2018-01-07 13:51:46 -08:00
|
|
|
\\ try something();
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-02-07 23:08:45 -08:00
|
|
|
\\fn something() error!void { }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: error: expected type 'void', found 'error'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid pointer for var type",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\extern fn ext() usize;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\var bytes: [ext()]u8 = undefined;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ for (bytes) |*b, i| {
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ b.* = u8(i);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ }
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:13: error: unable to evaluate constant expression",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"export function with comptime parameter",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo(comptime x: i32, y: i32) i32{
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return x + y;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:15: error: comptime parameter not allowed in function with calling convention 'ccc'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"extern function with comptime parameter",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\extern fn foo(comptime x: i32, y: i32) i32;
|
|
|
|
\\fn f() i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return foo(1, 2);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:15: error: comptime parameter not allowed in function with calling convention 'ccc'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"convert fixed size array to slice with invalid size",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var array: [5]u8 = undefined;
|
2018-06-18 14:25:29 -07:00
|
|
|
\\ var foo = @bytesToSlice(u32, array)[0];
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-06-18 14:25:29 -07:00
|
|
|
".tmp_source.zig:3:15: error: unable to convert [5]u8 to []align(1) const u32: size mismatch",
|
|
|
|
".tmp_source.zig:3:29: note: u32 has size 4; remaining bytes: 1",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-pure function returns type",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\var a: u32 = 0;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\pub fn List(comptime T: type) type {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ a += 1;
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return SmallList(T, 8);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\pub fn SmallList(comptime T: type, comptime STATIC_SIZE: usize) type {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return struct {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ items: []T,
|
|
|
|
\\ length: usize,
|
|
|
|
\\ prealloc_items: [STATIC_SIZE]T,
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn function_with_return_type_type() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var list: List(i32) = undefined;
|
|
|
|
\\ list.length = 10;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:7: error: unable to evaluate constant expression",
|
|
|
|
".tmp_source.zig:16:19: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"bogus method call on slice",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\var self = "aoeu";
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn f(m: []const u8) void {
|
2017-05-19 07:39:59 -07:00
|
|
|
\\ m.copy(u8, self[0..], m);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:6: error: no member named 'copy' in '[]const u8'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong number of arguments for method fn call",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ fn method(self: *const Foo, a: i32) void {}
|
2017-04-19 01:12:22 -07:00
|
|
|
\\};
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn f(foo: *const Foo) void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
|
|
|
\\ foo.method(1, 2);
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(f)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:6:15: error: expected 2 arguments, found 3",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"assign through constant pointer",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var cstr = c"Hat";
|
|
|
|
\\ cstr[0] = 'W';
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:11: error: cannot assign to constant",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"assign through constant slice",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var cstr: []const u8 = "Hat";
|
|
|
|
\\ cstr[0] = 'W';
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:11: error: cannot assign to constant",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"main function with bogus args type",
|
2018-02-07 23:08:45 -08:00
|
|
|
\\pub fn main(args: [][]bogus) !void {}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:23: error: use of undeclared identifier 'bogus'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"for loop missing element param",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo(blah: []u8) void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ for (blah) { }
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: for loop expression missing element parameter",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"misspelled type with pointer only reference",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const JasonHM = u8;
|
2018-05-31 07:56:59 -07:00
|
|
|
\\const JasonList = *JsonNode;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2017-12-03 17:43:56 -08:00
|
|
|
\\const JsonOA = union(enum) {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ JSONArray: JsonList,
|
|
|
|
\\ JSONObject: JasonHM,
|
|
|
|
\\};
|
|
|
|
\\
|
2017-12-03 17:43:56 -08:00
|
|
|
\\const JsonType = union(enum) {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ JSONNull: void,
|
|
|
|
\\ JSONInteger: isize,
|
|
|
|
\\ JSONDouble: f64,
|
|
|
|
\\ JSONBool: bool,
|
|
|
|
\\ JSONString: []u8,
|
2017-12-03 17:43:56 -08:00
|
|
|
\\ JSONArray: void,
|
|
|
|
\\ JSONObject: void,
|
2017-04-19 01:12:22 -07:00
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\pub const JsonNode = struct {
|
|
|
|
\\ kind: JsonType,
|
|
|
|
\\ jobject: ?JsonOA,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var jll: JasonList = undefined;
|
|
|
|
\\ jll.init(1234);
|
|
|
|
\\ var jd = JsonNode {.kind = JsonType.JSONArray , .jobject = JsonOA.JSONArray {jll} };
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:16: error: use of undeclared identifier 'JsonList'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"method call with first arg type primitive",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ x: i32,
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\ fn init(x: i32) Foo {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return Foo {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ .x = x,
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ }
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn f() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const derp = Foo.init(3);
|
|
|
|
\\
|
|
|
|
\\ derp.init();
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-06-15 10:49:39 -07:00
|
|
|
".tmp_source.zig:14:5: error: expected type 'i32', found 'Foo'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"method call with first arg type wrong container",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\pub const List = struct {
|
|
|
|
\\ len: usize,
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ allocator: *Allocator,
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ pub fn init(allocator: *Allocator) List {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return List {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ .len = 0,
|
|
|
|
\\ .allocator = allocator,
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ }
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\pub var global_allocator = Allocator {
|
|
|
|
\\ .field = 1234,
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\pub const Allocator = struct {
|
|
|
|
\\ field: i32,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var x = List.init(&global_allocator);
|
|
|
|
\\ x.init();
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:23:5: error: expected type '*Allocator', found '*List'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"binary not on number literal",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const TINY_QUANTUM_SHIFT = 4;
|
|
|
|
\\const TINY_QUANTUM_SIZE = 1 << TINY_QUANTUM_SHIFT;
|
|
|
|
\\var block_aligned_stuff: usize = (4 + TINY_QUANTUM_SIZE) & ~(TINY_QUANTUM_SIZE - 1);
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(block_aligned_stuff)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-06-05 02:14:43 -07:00
|
|
|
".tmp_source.zig:3:60: error: unable to perform binary not operation on type 'comptime_int'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2017-12-21 21:50:30 -08:00
|
|
|
cases.addCase(x: {
|
2018-05-28 17:23:55 -07:00
|
|
|
const tc = cases.create(
|
|
|
|
"multiple files with private function error",
|
|
|
|
\\const foo = @import("foo.zig",);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn callPrivFunction() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ foo.privateFunction();
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:4:8: error: 'privateFunction' is private",
|
2018-05-28 17:23:55 -07:00
|
|
|
"foo.zig:1:1: note: declared here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
|
|
|
tc.addSourceFile("foo.zig",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn privateFunction() void { }
|
2017-04-19 01:12:22 -07:00
|
|
|
);
|
|
|
|
|
2017-12-21 21:50:30 -08:00
|
|
|
break :x tc;
|
2017-04-19 01:12:22 -07:00
|
|
|
});
|
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"container init with non-type",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const zero: i32 = 0;
|
|
|
|
\\const a = zero{1};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(a)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:11: error: expected type, found 'i32'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"assign to constant field",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ field: i32,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn derp() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const f = Foo {.field = 1234,};
|
|
|
|
\\ f.field = 0;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:6:13: error: cannot assign to constant",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"return from defer expression",
|
2018-01-31 19:48:40 -08:00
|
|
|
\\pub fn testTrickyDefer() !void {
|
2018-01-07 14:28:20 -08:00
|
|
|
\\ defer canFail() catch {};
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-01-07 13:51:46 -08:00
|
|
|
\\ defer try canFail();
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-06-09 22:13:51 -07:00
|
|
|
\\ const a = maybeInt() orelse return;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-02-07 23:08:45 -08:00
|
|
|
\\fn canFail() error!void { }
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\pub fn maybeInt() ?i32 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return 0;
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(testTrickyDefer)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:4:11: error: cannot return from defer expression",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"attempt to access var args out of bounds",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn add(args: ...) i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return args[0] + args[1];
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo() i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return add(i32(1234));
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:26: error: index 1 outside argument list of size 1",
|
|
|
|
".tmp_source.zig:6:15: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"pass integer literal to var args",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn add(args: ...) i32 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var sum = i32(0);
|
2017-05-03 15:12:07 -07:00
|
|
|
\\ {comptime var i: usize = 0; inline while (i < args.len) : (i += 1) {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ sum += args[i];
|
|
|
|
\\ }}
|
|
|
|
\\ return sum;
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar() i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return add(1, 2, 3, 4);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(bar)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:10:16: error: compiler bug: integer and float literals in var args function must be casted",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"assign too big number to u16",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var vga_mem: u16 = 0xB8000;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:24: error: integer value 753664 cannot be implicitly casted to type 'u16'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"global variable alignment non power of 2",
|
2017-08-30 01:54:33 -07:00
|
|
|
\\const some_data: [100]u8 align(3) = undefined;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(some_data)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:32: error: alignment value 3 is not a power of 2",
|
|
|
|
);
|
2017-08-29 04:30:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"function alignment non power of 2",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\extern fn foo() align(3) void;
|
|
|
|
\\export fn entry() void { return foo(); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:1:23: error: alignment value 3 is not a power of 2",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"compile log",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ comptime bar(12, "hi",);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar(a: i32, b: []const u8) void {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ @compileLog("begin",);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ @compileLog("a", a, "b", b);
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ @compileLog("end",);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: found compile log statement",
|
|
|
|
".tmp_source.zig:2:17: note: called from here",
|
|
|
|
".tmp_source.zig:6:5: error: found compile log statement",
|
|
|
|
".tmp_source.zig:2:17: note: called from here",
|
|
|
|
".tmp_source.zig:7:5: error: found compile log statement",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:17: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"casting bit offset pointer to regular pointer",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const BitField = packed struct {
|
|
|
|
\\ a: u3,
|
|
|
|
\\ b: u3,
|
|
|
|
\\ c: u2,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn foo(bit_field: *const BitField) u3 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return bar(&bit_field.b);
|
|
|
|
\\}
|
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn bar(x: *const u3) u3 {
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ return x.*;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:8:26: error: expected type '*const u3', found '*align(1:3:6) const u3'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"referring to a struct that is invalid",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const UsbDeviceRequest = struct {
|
|
|
|
\\ Type: u8,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ comptime assert(@sizeOf(UsbDeviceRequest) == 0x8);
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn assert(ok: bool) void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ if (!ok) unreachable;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:10:14: error: unable to evaluate constant expression",
|
|
|
|
".tmp_source.zig:6:20: note: called from here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"control flow uses comptime var at runtime",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ comptime var i = 0;
|
2017-05-03 15:12:07 -07:00
|
|
|
\\ while (i < 5) : (i += 1) {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ bar();
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar() void { }
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:5: error: control flow attempts to use compile-time variable at runtime",
|
|
|
|
".tmp_source.zig:3:24: note: compile-time variable assigned here",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"ignored return value",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ bar();
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar() i32 { return 0; }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:8: error: expression value is ignored",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"ignored assert-err-ok return value",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2018-01-08 21:07:01 -08:00
|
|
|
\\ bar() catch unreachable;
|
2017-04-23 21:49:42 -07:00
|
|
|
\\}
|
2018-02-07 23:08:45 -08:00
|
|
|
\\fn bar() error!i32 { return 0; }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:11: error: expression value is ignored",
|
|
|
|
);
|
2017-04-23 21:49:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"ignored statement value",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-23 21:49:42 -07:00
|
|
|
\\ 1;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: expression value is ignored",
|
|
|
|
);
|
2017-04-23 21:49:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"ignored comptime statement value",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-23 21:49:42 -07:00
|
|
|
\\ comptime {1;}
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:15: error: expression value is ignored",
|
|
|
|
);
|
2017-04-23 21:49:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"ignored comptime value",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-23 21:49:42 -07:00
|
|
|
\\ comptime 1;
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:5: error: expression value is ignored",
|
|
|
|
);
|
2017-04-23 21:49:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"ignored defered statement value",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-23 21:49:42 -07:00
|
|
|
\\ defer {1;}
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:12: error: expression value is ignored",
|
|
|
|
);
|
2017-04-23 21:49:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"ignored defered function call",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-23 22:33:06 -07:00
|
|
|
\\ defer bar();
|
|
|
|
\\}
|
2018-02-07 23:08:45 -08:00
|
|
|
\\fn bar() error!i32 { return 0; }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:14: error: expression value is ignored",
|
|
|
|
);
|
2017-04-23 22:33:06 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"dereference an array",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\var s_buffer: [10]u8 = undefined;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\pub fn pass(in: []u8) []u8 {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var out = &s_buffer;
|
2018-06-03 22:09:15 -07:00
|
|
|
\\ out.*.* = in[0];
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ return out.*[0..1];
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(pass)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-06-03 22:09:15 -07:00
|
|
|
".tmp_source.zig:4:10: error: attempt to dereference non pointer type '[10]u8'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"pass const ptr to mutable ptr fn",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo() bool {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ const a = ([]const u8)("a",);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const b = &a;
|
|
|
|
\\ return ptrEql(b, b);
|
|
|
|
\\}
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn ptrEql(a: *[]const u8, b: *[]const u8) bool {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return true;
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:4:19: error: expected type '*[]const u8', found '*const []const u8'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2017-12-21 21:50:30 -08:00
|
|
|
cases.addCase(x: {
|
2018-05-28 17:23:55 -07:00
|
|
|
const tc = cases.create(
|
|
|
|
"export collision",
|
|
|
|
\\const foo = @import("foo.zig",);
|
2017-12-18 23:39:43 -08:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn bar() usize {
|
2017-12-18 23:39:43 -08:00
|
|
|
\\ return foo.baz;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
"foo.zig:1:8: error: exported symbol collision: 'bar'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:8: note: other symbol here",
|
|
|
|
);
|
2017-12-18 23:39:43 -08:00
|
|
|
|
|
|
|
tc.addSourceFile("foo.zig",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn bar() void {}
|
2017-12-18 23:39:43 -08:00
|
|
|
\\pub const baz = 1234;
|
|
|
|
);
|
|
|
|
|
2017-12-21 21:50:30 -08:00
|
|
|
break :x tc;
|
2017-12-18 23:39:43 -08:00
|
|
|
});
|
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicit cast from array to mutable slice",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\var global_array: [10]i32 = undefined;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo(param: []i32) void {}
|
|
|
|
\\export fn entry() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ foo(global_array);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:4:9: error: expected type '[]i32', found '[10]i32'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"ptrcast to non-pointer",
|
2018-05-31 07:56:59 -07:00
|
|
|
\\export fn entry(a: *i32) usize {
|
2017-04-21 07:39:13 -07:00
|
|
|
\\ return @ptrCast(usize, a);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:2:21: error: expected pointer, found 'usize'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"asm at compile time",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ doSomeAsm();
|
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn doSomeAsm() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ asm volatile (
|
|
|
|
\\ \\.globl aoeu;
|
|
|
|
\\ \\.type aoeu, @function;
|
|
|
|
\\ \\.set aoeu, derp;
|
|
|
|
\\ );
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:6:5: error: unable to evaluate constant expression",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid member of builtin enum",
|
|
|
|
\\const builtin = @import("builtin",);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-05-01 10:12:38 -07:00
|
|
|
\\ const foo = builtin.Arch.x86;
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:29: error: container 'Arch' has no member called 'x86'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"int to ptr of 0 bits",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ var x: usize = 0x1000;
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ var y: *void = @intToPtr(*void, x);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:3:30: error: type '*void' has 0 bits and cannot store information",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@fieldParentPtr - non struct",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = i32;
|
2018-05-31 07:56:59 -07:00
|
|
|
\\export fn foo(a: *i32) *Foo {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return @fieldParentPtr(Foo, "a", a);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:28: error: expected struct type, found 'i32'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@fieldParentPtr - bad field name",
|
2018-01-22 19:24:07 -08:00
|
|
|
\\const Foo = extern struct {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ derp: i32,
|
|
|
|
\\};
|
2018-05-31 07:56:59 -07:00
|
|
|
\\export fn foo(a: *i32) *Foo {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return @fieldParentPtr(Foo, "a", a);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:33: error: struct 'Foo' has no field 'a'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@fieldParentPtr - field pointer is not pointer",
|
2018-01-22 19:24:07 -08:00
|
|
|
\\const Foo = extern struct {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ a: i32,
|
|
|
|
\\};
|
2018-05-31 07:56:59 -07:00
|
|
|
\\export fn foo(a: i32) *Foo {
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ return @fieldParentPtr(Foo, "a", a);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:38: error: expected pointer, found 'i32'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@fieldParentPtr - comptime field ptr not based on struct",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ a: i32,
|
|
|
|
\\ b: i32,
|
|
|
|
\\};
|
|
|
|
\\const foo = Foo { .a = 1, .b = 2, };
|
|
|
|
\\
|
|
|
|
\\comptime {
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ const field_ptr = @intToPtr(*i32, 0x1234);
|
2017-04-19 01:12:22 -07:00
|
|
|
\\ const another_foo_ptr = @fieldParentPtr(Foo, "b", field_ptr);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:9:55: error: pointer value not based on parent struct",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@fieldParentPtr - comptime wrong field index",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ a: i32,
|
|
|
|
\\ b: i32,
|
|
|
|
\\};
|
|
|
|
\\const foo = Foo { .a = 1, .b = 2, };
|
|
|
|
\\
|
|
|
|
\\comptime {
|
|
|
|
\\ const another_foo_ptr = @fieldParentPtr(Foo, "b", &foo.a);
|
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:8:29: error: field 'b' has index 1 but pointer value is index 0 of struct 'Foo'",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@offsetOf - non struct",
|
2017-04-20 07:57:41 -07:00
|
|
|
\\const Foo = i32;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() usize {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ return @offsetOf(Foo, "a",);
|
2017-04-20 07:57:41 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:3:22: error: expected struct type, found 'i32'",
|
|
|
|
);
|
2017-04-20 07:57:41 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@offsetOf - bad field name",
|
2017-04-20 07:57:41 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ derp: i32,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() usize {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ return @offsetOf(Foo, "a",);
|
2017-04-20 07:57:41 -07:00
|
|
|
\\}
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
".tmp_source.zig:5:27: error: struct 'Foo' has no field 'a'",
|
|
|
|
);
|
2017-04-20 07:57:41 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.addExe(
|
|
|
|
"missing main fn in executable",
|
2017-04-19 01:12:22 -07:00
|
|
|
\\
|
2018-05-28 17:23:55 -07:00
|
|
|
,
|
|
|
|
"error: no member named 'main' in '",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.addExe(
|
|
|
|
"private main fn",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn main() void {}
|
2017-04-19 01:12:22 -07:00
|
|
|
,
|
|
|
|
"error: 'main' is private",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:1: note: declared here",
|
|
|
|
);
|
2017-04-22 09:54:00 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"setting a section on an extern variable",
|
2017-12-18 23:39:43 -08:00
|
|
|
\\extern var foo: i32 section(".text2");
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() i32 {
|
2017-12-18 23:39:43 -08:00
|
|
|
\\ return foo;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:29: error: cannot set section of external variable 'foo'",
|
|
|
|
);
|
2017-12-18 23:39:43 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"setting a section on a local variable",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() i32 {
|
2017-12-18 23:39:43 -08:00
|
|
|
\\ var foo: i32 section(".text2") = 1234;
|
|
|
|
\\ return foo;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:26: error: cannot set section of local variable 'foo'",
|
|
|
|
);
|
2017-12-18 23:39:43 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"setting a section on an extern fn",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\extern fn foo() section(".text2") void;
|
|
|
|
\\export fn entry() void {
|
2017-12-18 23:39:43 -08:00
|
|
|
\\ foo();
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:25: error: cannot set section of external function 'foo'",
|
|
|
|
);
|
2017-12-18 23:39:43 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"returning address of local variable - simple",
|
2018-05-31 07:56:59 -07:00
|
|
|
\\export fn foo() *i32 {
|
2017-04-27 16:40:35 -07:00
|
|
|
\\ var a: i32 = undefined;
|
|
|
|
\\ return &a;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:13: error: function returns address of local variable",
|
|
|
|
);
|
2017-04-27 20:40:43 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"returning address of local variable - phi",
|
2018-05-31 07:56:59 -07:00
|
|
|
\\export fn foo(c: bool) *i32 {
|
2017-04-27 20:40:43 -07:00
|
|
|
\\ var a: i32 = undefined;
|
|
|
|
\\ var b: i32 = undefined;
|
|
|
|
\\ return if (c) &a else &b;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:12: error: function returns address of local variable",
|
|
|
|
);
|
2017-05-03 13:13:22 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"inner struct member shadowing outer struct member",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn A() type {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return struct {
|
2017-05-03 13:13:22 -07:00
|
|
|
\\ b: B(),
|
|
|
|
\\
|
|
|
|
\\ const Self = this;
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\ fn B() type {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return struct {
|
2017-05-03 13:13:22 -07:00
|
|
|
\\ const Self = this;
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-05-03 13:13:22 -07:00
|
|
|
\\ }
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-05-03 13:13:22 -07:00
|
|
|
\\}
|
|
|
|
\\comptime {
|
|
|
|
\\ assert(A().B().Self != A().Self);
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn assert(ok: bool) void {
|
2017-05-03 13:13:22 -07:00
|
|
|
\\ if (!ok) unreachable;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:9:17: error: redefinition of 'Self'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:5:9: note: previous definition is here",
|
|
|
|
);
|
2017-05-04 07:18:01 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
2018-06-09 20:42:14 -07:00
|
|
|
"while expected bool, got optional",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-04 07:18:01 -07:00
|
|
|
\\ while (bar()) {}
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar() ?i32 { return 1; }
|
2017-05-04 07:18:01 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: expected type 'bool', found '?i32'",
|
|
|
|
);
|
2017-05-04 07:18:01 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"while expected bool, got error union",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-04 07:18:01 -07:00
|
|
|
\\ while (bar()) {}
|
|
|
|
\\}
|
2018-02-07 23:08:45 -08:00
|
|
|
\\fn bar() error!i32 { return 1; }
|
2017-05-04 07:18:01 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: expected type 'bool', found 'error!i32'",
|
|
|
|
);
|
2017-05-04 07:18:01 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
2018-06-09 20:42:14 -07:00
|
|
|
"while expected optional, got bool",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-04 07:18:01 -07:00
|
|
|
\\ while (bar()) |x| {}
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar() bool { return true; }
|
2017-05-04 07:18:01 -07:00
|
|
|
,
|
2018-06-09 20:42:14 -07:00
|
|
|
".tmp_source.zig:2:15: error: expected optional type, found 'bool'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-05-04 07:18:01 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
2018-06-09 20:42:14 -07:00
|
|
|
"while expected optional, got error union",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-04 07:18:01 -07:00
|
|
|
\\ while (bar()) |x| {}
|
|
|
|
\\}
|
2018-02-07 23:08:45 -08:00
|
|
|
\\fn bar() error!i32 { return 1; }
|
2017-05-04 07:18:01 -07:00
|
|
|
,
|
2018-06-09 20:42:14 -07:00
|
|
|
".tmp_source.zig:2:15: error: expected optional type, found 'error!i32'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-05-04 07:18:01 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"while expected error union, got bool",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-04 07:18:01 -07:00
|
|
|
\\ while (bar()) |x| {} else |err| {}
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar() bool { return true; }
|
2017-05-04 07:18:01 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: expected error union type, found 'bool'",
|
|
|
|
);
|
2017-05-04 07:18:01 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
2018-06-09 20:42:14 -07:00
|
|
|
"while expected error union, got optional",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-04 07:18:01 -07:00
|
|
|
\\ while (bar()) |x| {} else |err| {}
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar() ?i32 { return 1; }
|
2017-05-04 07:18:01 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: expected error union type, found '?i32'",
|
|
|
|
);
|
2017-05-04 12:00:25 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"inline fn calls itself indirectly",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-04 12:00:25 -07:00
|
|
|
\\ bar();
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\inline fn bar() void {
|
2017-05-04 12:00:25 -07:00
|
|
|
\\ baz();
|
|
|
|
\\ quux();
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\inline fn baz() void {
|
2017-05-04 12:00:25 -07:00
|
|
|
\\ bar();
|
|
|
|
\\ quux();
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\extern fn quux() void;
|
2017-05-04 12:00:25 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:8: error: unable to inline function",
|
|
|
|
);
|
2017-05-04 12:00:25 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"save reference to inline function",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-08-08 14:38:25 -07:00
|
|
|
\\ quux(@ptrToInt(bar));
|
2017-05-04 12:00:25 -07:00
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\inline fn bar() void { }
|
|
|
|
\\extern fn quux(usize) void;
|
2017-05-04 12:00:25 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:8: error: unable to inline function",
|
|
|
|
);
|
2017-05-06 20:13:12 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"signed integer division",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo(a: i32, b: i32) i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return a / b;
|
2017-05-06 20:13:12 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:14: error: division with 'i32' and 'i32': signed integers must use @divTrunc, @divFloor, or @divExact",
|
|
|
|
);
|
2017-05-06 20:13:12 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"signed integer remainder division",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo(a: i32, b: i32) i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return a % b;
|
2017-05-06 20:13:12 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:14: error: remainder division with 'i32' and 'i32': signed integers and floats must use @rem or @mod",
|
|
|
|
);
|
2017-05-09 21:21:27 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"cast negative value to unsigned integer",
|
2017-05-09 21:21:27 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ const value: i32 = -1;
|
2018-06-17 01:32:57 -07:00
|
|
|
\\ const unsigned = @intCast(u32, value);
|
2017-05-09 21:21:27 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-06-17 01:32:57 -07:00
|
|
|
".tmp_source.zig:3:22: error: attempt to cast negative value to unsigned integer",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-05-14 10:07:45 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"compile-time division by zero",
|
2017-05-14 10:07:45 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ const a: i32 = 1;
|
|
|
|
\\ const b: i32 = 0;
|
|
|
|
\\ const c = a / b;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:17: error: division by zero",
|
|
|
|
);
|
2017-05-14 10:07:45 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"compile-time remainder division by zero",
|
2017-05-14 10:07:45 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ const a: i32 = 1;
|
|
|
|
\\ const b: i32 = 0;
|
|
|
|
\\ const c = a % b;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:17: error: division by zero",
|
|
|
|
);
|
2017-05-16 14:04:35 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"compile-time integer cast truncates bits",
|
2017-05-16 14:04:35 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ const spartan_count: u16 = 300;
|
2018-06-17 01:32:57 -07:00
|
|
|
\\ const byte = @intCast(u8, spartan_count);
|
2017-05-16 14:04:35 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-06-17 01:32:57 -07:00
|
|
|
".tmp_source.zig:3:18: error: cast from 'u16' to 'u8' truncates bits",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-05-20 20:06:32 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@setRuntimeSafety twice for same scope",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2018-01-24 22:46:12 -08:00
|
|
|
\\ @setRuntimeSafety(false);
|
|
|
|
\\ @setRuntimeSafety(false);
|
2017-05-20 20:06:32 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-01-24 22:46:12 -08:00
|
|
|
".tmp_source.zig:3:5: error: runtime safety set twice for same scope",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: note: first set here",
|
|
|
|
);
|
2017-05-20 20:06:32 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@setFloatMode twice for same scope",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-20 20:06:32 -07:00
|
|
|
\\ @setFloatMode(this, @import("builtin").FloatMode.Optimized);
|
|
|
|
\\ @setFloatMode(this, @import("builtin").FloatMode.Optimized);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: float mode set twice for same scope",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: note: first set here",
|
|
|
|
);
|
2017-05-21 06:50:15 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"array access of type",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-21 06:50:15 -07:00
|
|
|
\\ var b: u8[40] = undefined;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:14: error: array access of non-array type 'type'",
|
|
|
|
);
|
2017-05-21 07:41:57 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"cannot break out of defer expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-21 07:41:57 -07:00
|
|
|
\\ while (true) {
|
|
|
|
\\ defer {
|
|
|
|
\\ break;
|
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:13: error: cannot break out of defer expression",
|
|
|
|
);
|
2017-05-21 07:41:57 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"cannot continue out of defer expression",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2017-05-21 07:41:57 -07:00
|
|
|
\\ while (true) {
|
|
|
|
\\ defer {
|
|
|
|
\\ continue;
|
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:13: error: cannot continue out of defer expression",
|
|
|
|
);
|
2017-05-21 07:59:09 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"calling a var args function only known at runtime",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\var foos = []fn(...) void { foo1, foo2 };
|
2017-05-25 10:48:10 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo1(args: ...) void {}
|
|
|
|
\\fn foo2(args: ...) void {}
|
2017-05-25 10:48:10 -07:00
|
|
|
\\
|
2018-01-31 19:48:40 -08:00
|
|
|
\\pub fn main() !void {
|
2017-05-25 10:48:10 -07:00
|
|
|
\\ foos[0]();
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:7:9: error: calling a generic function requires compile-time known function value",
|
|
|
|
);
|
2017-05-26 11:39:18 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"calling a generic function only known at runtime",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\var foos = []fn(var) void { foo1, foo2 };
|
2017-05-26 11:39:18 -07:00
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo1(arg: var) void {}
|
|
|
|
\\fn foo2(arg: var) void {}
|
2017-05-26 11:39:18 -07:00
|
|
|
\\
|
2018-01-31 19:48:40 -08:00
|
|
|
\\pub fn main() !void {
|
2017-05-26 11:39:18 -07:00
|
|
|
\\ foos[0](true);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:7:9: error: calling a generic function requires compile-time known function value",
|
|
|
|
);
|
2017-06-03 12:09:40 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@compileError shows traceback of references that caused it",
|
|
|
|
\\const foo = @compileError("aoeu",);
|
2017-06-03 12:09:40 -07:00
|
|
|
\\
|
|
|
|
\\const bar = baz + foo;
|
|
|
|
\\const baz = 1;
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() i32 {
|
2017-06-03 12:09:40 -07:00
|
|
|
\\ return bar;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:1:13: error: aoeu",
|
|
|
|
".tmp_source.zig:3:19: note: referenced here",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:7:12: note: referenced here",
|
|
|
|
);
|
2017-08-05 13:52:19 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"instantiating an undefined value for an invalid struct that contains itself",
|
2017-08-05 13:52:19 -07:00
|
|
|
\\const Foo = struct {
|
|
|
|
\\ x: Foo,
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\var foo: Foo = undefined;
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize {
|
2017-08-05 13:52:19 -07:00
|
|
|
\\ return @sizeOf(@typeOf(foo.x));
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:13: error: struct 'Foo' contains itself",
|
|
|
|
);
|
2017-08-06 23:06:06 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"float literal too large error",
|
2017-08-06 23:06:06 -07:00
|
|
|
\\comptime {
|
2017-09-27 23:15:06 -07:00
|
|
|
\\ const a = 0x1.0p16384;
|
2017-08-06 23:06:06 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: float literal out of range of any type",
|
|
|
|
);
|
2017-08-06 23:06:06 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"float literal too small error (denormal)",
|
2017-08-06 23:06:06 -07:00
|
|
|
\\comptime {
|
2017-09-27 23:15:06 -07:00
|
|
|
\\ const a = 0x1.0p-16384;
|
2017-08-06 23:06:06 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: float literal out of range of any type",
|
|
|
|
);
|
2017-08-07 12:57:41 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"explicit cast float literal to integer when there is a fraction component",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() i32 {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return i32(12.34);
|
2017-08-07 12:57:41 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:16: error: fractional component prevents float value 12.340000 from being casted to type 'i32'",
|
|
|
|
);
|
2017-08-08 14:38:25 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non pointer given to @ptrToInt",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry(x: i32) usize {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return @ptrToInt(x);
|
2017-08-08 14:38:25 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:22: error: expected pointer, found 'i32'",
|
|
|
|
);
|
2017-08-09 07:09:38 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@shlExact shifts out 1 bits",
|
2017-08-09 07:09:38 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ const x = @shlExact(u8(0b01010101), 2);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: operation caused overflow",
|
|
|
|
);
|
2017-08-09 07:09:38 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@shrExact shifts out 1 bits",
|
2017-08-09 07:09:38 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ const x = @shrExact(u8(0b10101010), 2);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:15: error: exact shift shifted out 1 bits",
|
|
|
|
);
|
bit shifting safety
* add u3, u4, u5, u6, u7 and i3, i4, i5, i6, i7
* shift operations shift amount parameter type is
integer with log2 bit width of other param
- This enforces not violating undefined behavior on
shift amount >= bit width with the type system
* clean up math.log, math.ln, math.log2, math.log10
closes #403
2017-08-18 22:32:15 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"shifting without int type or comptime known",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry(x: u8) u8 {
|
bit shifting safety
* add u3, u4, u5, u6, u7 and i3, i4, i5, i6, i7
* shift operations shift amount parameter type is
integer with log2 bit width of other param
- This enforces not violating undefined behavior on
shift amount >= bit width with the type system
* clean up math.log, math.ln, math.log2, math.log10
closes #403
2017-08-18 22:32:15 -07:00
|
|
|
\\ return 0x11 << x;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:17: error: LHS of shift must be an integer type, or RHS must be compile-time known",
|
|
|
|
);
|
bit shifting safety
* add u3, u4, u5, u6, u7 and i3, i4, i5, i6, i7
* shift operations shift amount parameter type is
integer with log2 bit width of other param
- This enforces not violating undefined behavior on
shift amount >= bit width with the type system
* clean up math.log, math.ln, math.log2, math.log10
closes #403
2017-08-18 22:32:15 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"shifting RHS is log2 of LHS int bit width",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry(x: u8, y: u8) u8 {
|
bit shifting safety
* add u3, u4, u5, u6, u7 and i3, i4, i5, i6, i7
* shift operations shift amount parameter type is
integer with log2 bit width of other param
- This enforces not violating undefined behavior on
shift amount >= bit width with the type system
* clean up math.log, math.ln, math.log2, math.log10
closes #403
2017-08-18 22:32:15 -07:00
|
|
|
\\ return x << y;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:17: error: expected type 'u3', found 'u8'",
|
|
|
|
);
|
2017-08-18 23:02:25 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"globally shadowing a primitive type",
|
2017-08-18 23:02:25 -07:00
|
|
|
\\const u16 = @intType(false, 8);
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-08-18 23:02:25 -07:00
|
|
|
\\ const a: u16 = 300;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:1: error: declaration shadows type 'u16'",
|
|
|
|
);
|
2017-08-29 12:19:15 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicitly increasing pointer alignment",
|
2017-08-29 12:19:15 -07:00
|
|
|
\\const Foo = packed struct {
|
|
|
|
\\ a: u8,
|
|
|
|
\\ b: u32,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-08-29 12:19:15 -07:00
|
|
|
\\ var foo = Foo { .a = 1, .b = 10 };
|
|
|
|
\\ bar(&foo.b);
|
|
|
|
\\}
|
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn bar(x: *u32) void {
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ x.* += 1;
|
2017-08-29 12:19:15 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:8:13: error: expected type '*u32', found '*align(1) u32'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-08-29 12:19:15 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicitly increasing slice alignment",
|
2017-08-29 12:19:15 -07:00
|
|
|
\\const Foo = packed struct {
|
|
|
|
\\ a: u8,
|
|
|
|
\\ b: u32,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-08-29 12:19:15 -07:00
|
|
|
\\ var foo = Foo { .a = 1, .b = 10 };
|
|
|
|
\\ foo.b += 1;
|
2018-06-04 19:11:14 -07:00
|
|
|
\\ bar((*[1]u32)(&foo.b)[0..]);
|
2017-08-29 12:19:15 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn bar(x: []u32) void {
|
2017-08-29 12:19:15 -07:00
|
|
|
\\ x[0] += 1;
|
|
|
|
\\}
|
|
|
|
,
|
2018-06-04 19:11:14 -07:00
|
|
|
".tmp_source.zig:9:18: error: cast increases pointer alignment",
|
|
|
|
".tmp_source.zig:9:23: note: '*align(1) u32' has alignment 1",
|
|
|
|
".tmp_source.zig:9:18: note: '*[1]u32' has alignment 4",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-08-29 13:52:31 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"increase pointer alignment in @ptrCast",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() u32 {
|
2017-08-29 14:10:11 -07:00
|
|
|
\\ var bytes: [4]u8 = []u8{0x01, 0x02, 0x03, 0x04};
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ const ptr = @ptrCast(*u32, &bytes[0]);
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ return ptr.*;
|
2017-08-29 13:52:31 -07:00
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:17: error: cast increases pointer alignment",
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:3:38: note: '*u8' has alignment 1",
|
|
|
|
".tmp_source.zig:3:26: note: '*u32' has alignment 4",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-08-29 20:33:25 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@alignCast expects pointer or slice",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ @alignCast(4, u32(3));
|
2017-08-29 20:33:25 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:22: error: expected pointer or slice, found 'u32'",
|
|
|
|
);
|
2017-08-29 21:06:14 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"passing an under-aligned function pointer",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-08-29 21:06:14 -07:00
|
|
|
\\ testImplicitlyDecreaseFnAlign(alignedSmall, 1234);
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn testImplicitlyDecreaseFnAlign(ptr: fn () align(8) i32, answer: i32) void {
|
2017-08-29 21:06:14 -07:00
|
|
|
\\ if (ptr() != answer) unreachable;
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn alignedSmall() align(4) i32 { return 1234; }
|
2017-08-29 21:06:14 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:35: error: expected type 'fn() align(8) i32', found 'fn() align(4) i32'",
|
|
|
|
);
|
2017-08-29 21:06:14 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"passing a not-aligned-enough pointer to cmpxchg",
|
2017-08-29 23:56:42 -07:00
|
|
|
\\const AtomicOrder = @import("builtin").AtomicOrder;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() bool {
|
2017-08-30 01:54:33 -07:00
|
|
|
\\ var x: i32 align(1) = 1234;
|
2018-04-18 09:16:42 -07:00
|
|
|
\\ while (!@cmpxchgWeak(i32, &x, 1234, 5678, AtomicOrder.SeqCst, AtomicOrder.SeqCst)) {}
|
2017-08-29 23:56:42 -07:00
|
|
|
\\ return x == 5678;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:4:32: error: expected type '*i32', found '*align(1) i32'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-08-29 23:56:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong size to an array literal",
|
2017-08-31 13:30:46 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ const array = [2]u8{1, 2, 3};
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:24: error: expected [2]u8 literal, found [3]u8 literal",
|
|
|
|
);
|
2017-08-31 13:30:46 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@setEvalBranchQuota in non-root comptime execution context",
|
2017-08-31 13:54:20 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ foo();
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo() void {
|
2017-08-31 13:54:20 -07:00
|
|
|
\\ @setEvalBranchQuota(1001);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:5:5: error: @setEvalBranchQuota must be called from the top of the comptime stack",
|
|
|
|
".tmp_source.zig:2:8: note: called from here",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:10: note: called from here",
|
|
|
|
);
|
2017-09-05 15:51:07 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong pointer implicitly casted to pointer to @OpaqueType()",
|
2017-09-05 15:51:07 -07:00
|
|
|
\\const Derp = @OpaqueType();
|
2018-05-31 07:56:59 -07:00
|
|
|
\\extern fn bar(d: *Derp) void;
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn foo() void {
|
2018-03-06 13:46:45 -08:00
|
|
|
\\ var x = u8(1);
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ bar(@ptrCast(*c_void, &x));
|
2017-09-05 15:51:07 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:5:9: error: expected type '*Derp', found '*c_void'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-09-05 15:51:07 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-const variables of things that require const variables",
|
2017-09-09 19:46:08 -07:00
|
|
|
\\const Opaque = @OpaqueType();
|
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\export fn entry(opaque: *Opaque) void {
|
2017-09-09 19:46:08 -07:00
|
|
|
\\ var m2 = &2;
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ const y: u32 = m2.*;
|
2017-09-09 19:46:08 -07:00
|
|
|
\\
|
|
|
|
\\ var a = undefined;
|
|
|
|
\\ var b = 1;
|
|
|
|
\\ var c = 1.0;
|
|
|
|
\\ var d = this;
|
|
|
|
\\ var e = null;
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ var f = opaque.*;
|
2017-09-09 19:46:08 -07:00
|
|
|
\\ var g = i32;
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ var h = @import("std",);
|
2017-09-09 19:46:08 -07:00
|
|
|
\\ var i = (Foo {}).bar;
|
|
|
|
\\
|
|
|
|
\\ var z: noreturn = return;
|
|
|
|
\\}
|
|
|
|
\\
|
|
|
|
\\const Foo = struct {
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ fn bar(self: *const Foo) void {}
|
2017-09-09 19:46:08 -07:00
|
|
|
\\};
|
|
|
|
,
|
2018-06-05 02:14:43 -07:00
|
|
|
".tmp_source.zig:4:4: error: variable of type '*comptime_int' must be const or comptime",
|
2017-09-09 19:46:08 -07:00
|
|
|
".tmp_source.zig:7:4: error: variable of type '(undefined)' must be const or comptime",
|
2018-06-05 02:14:43 -07:00
|
|
|
".tmp_source.zig:8:4: error: variable of type 'comptime_int' must be const or comptime",
|
|
|
|
".tmp_source.zig:9:4: error: variable of type 'comptime_float' must be const or comptime",
|
2017-09-09 19:46:08 -07:00
|
|
|
".tmp_source.zig:10:4: error: variable of type '(block)' must be const or comptime",
|
|
|
|
".tmp_source.zig:11:4: error: variable of type '(null)' must be const or comptime",
|
2018-06-07 14:26:41 -07:00
|
|
|
".tmp_source.zig:12:4: error: variable of type 'Opaque' not allowed",
|
2017-09-09 19:46:08 -07:00
|
|
|
".tmp_source.zig:13:4: error: variable of type 'type' must be const or comptime",
|
|
|
|
".tmp_source.zig:14:4: error: variable of type '(namespace)' must be const or comptime",
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:15:4: error: variable of type '(bound fn(*const Foo) void)' must be const or comptime",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:17:4: error: unreachable code",
|
|
|
|
);
|
2017-09-09 19:46:08 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong types given to atomic order args in cmpxchg",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-09-10 11:03:15 -07:00
|
|
|
\\ var x: i32 = 1234;
|
2018-04-18 09:16:42 -07:00
|
|
|
\\ while (!@cmpxchgWeak(i32, &x, 1234, 5678, u32(1234), u32(1234))) {}
|
2017-09-10 11:03:15 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:50: error: expected type 'AtomicOrder', found 'u32'",
|
|
|
|
);
|
2017-09-10 11:03:15 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"wrong types given to @export",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\extern fn entry() void { }
|
2017-12-18 23:39:43 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ @export("entry", entry, u32(1234));
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:32: error: expected type 'GlobalLinkage', found 'u32'",
|
|
|
|
);
|
2017-12-18 23:39:43 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"struct with invalid field",
|
|
|
|
\\const std = @import("std",);
|
2017-09-17 20:21:22 -07:00
|
|
|
\\const Allocator = std.mem.Allocator;
|
|
|
|
\\const ArrayList = std.ArrayList;
|
|
|
|
\\
|
|
|
|
\\const HeaderWeight = enum {
|
|
|
|
\\ H1, H2, H3, H4, H5, H6,
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\const MdText = ArrayList(u8);
|
|
|
|
\\
|
2017-12-03 17:43:56 -08:00
|
|
|
\\const MdNode = union(enum) {
|
2017-09-17 20:21:22 -07:00
|
|
|
\\ Header: struct {
|
|
|
|
\\ text: MdText,
|
|
|
|
\\ weight: HeaderValue,
|
|
|
|
\\ },
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-09-17 20:21:22 -07:00
|
|
|
\\ const a = MdNode.Header {
|
|
|
|
\\ .text = MdText.init(&std.debug.global_allocator),
|
|
|
|
\\ .weight = HeaderWeight.H1,
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:14:17: error: use of undeclared identifier 'HeaderValue'",
|
|
|
|
);
|
2017-10-02 19:00:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@setAlignStack outside function",
|
2017-10-02 19:00:42 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ @setAlignStack(16);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: error: @setAlignStack outside function",
|
|
|
|
);
|
2017-10-02 19:00:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@setAlignStack in naked function",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export nakedcc fn entry() void {
|
2017-10-02 19:00:42 -07:00
|
|
|
\\ @setAlignStack(16);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: error: @setAlignStack in naked function",
|
|
|
|
);
|
2017-10-02 19:00:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@setAlignStack in inline function",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-10-02 19:00:42 -07:00
|
|
|
\\ foo();
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\inline fn foo() void {
|
2017-10-02 19:00:42 -07:00
|
|
|
\\ @setAlignStack(16);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:5:5: error: @setAlignStack in inline function",
|
|
|
|
);
|
2017-10-02 19:00:42 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@setAlignStack set twice",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-10-02 19:00:42 -07:00
|
|
|
\\ @setAlignStack(16);
|
|
|
|
\\ @setAlignStack(16);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:3:5: error: alignstack set twice",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: note: first set here",
|
|
|
|
);
|
2017-10-06 09:41:14 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@setAlignStack too big",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-10-23 19:33:00 -07:00
|
|
|
\\ @setAlignStack(511 + 1);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: error: attempt to @setAlignStack(512); maximum is 256",
|
|
|
|
);
|
2017-10-23 19:33:00 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"storing runtime value in compile time variable then using it",
|
2017-10-06 09:41:14 -07:00
|
|
|
\\const Mode = @import("builtin").Mode;
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn Free(comptime filename: []const u8) TestCase {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return TestCase {
|
2017-10-06 09:41:14 -07:00
|
|
|
\\ .filename = filename,
|
|
|
|
\\ .problem_type = ProblemType.Free,
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-10-06 09:41:14 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn LibC(comptime filename: []const u8) TestCase {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return TestCase {
|
2017-10-06 09:41:14 -07:00
|
|
|
\\ .filename = filename,
|
|
|
|
\\ .problem_type = ProblemType.LinkLibC,
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-10-06 09:41:14 -07:00
|
|
|
\\}
|
|
|
|
\\
|
|
|
|
\\const TestCase = struct {
|
|
|
|
\\ filename: []const u8,
|
|
|
|
\\ problem_type: ProblemType,
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\const ProblemType = enum {
|
|
|
|
\\ Free,
|
|
|
|
\\ LinkLibC,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-10-06 09:41:14 -07:00
|
|
|
\\ const tests = []TestCase {
|
|
|
|
\\ Free("001"),
|
|
|
|
\\ Free("002"),
|
|
|
|
\\ LibC("078"),
|
|
|
|
\\ Free("116"),
|
|
|
|
\\ Free("117"),
|
|
|
|
\\ };
|
|
|
|
\\
|
|
|
|
\\ for ([]Mode { Mode.Debug, Mode.ReleaseSafe, Mode.ReleaseFast }) |mode| {
|
|
|
|
\\ inline for (tests) |test_case| {
|
|
|
|
\\ const foo = test_case.filename ++ ".zig";
|
|
|
|
\\ }
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:37:16: error: cannot store runtime value in compile time variable",
|
|
|
|
);
|
2017-10-25 20:18:18 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"field access of opaque type",
|
2017-10-25 20:18:18 -07:00
|
|
|
\\const MyType = @OpaqueType();
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() bool {
|
2017-10-25 20:18:18 -07:00
|
|
|
\\ var x: i32 = 1;
|
2018-05-31 07:56:59 -07:00
|
|
|
\\ return bar(@ptrCast(*MyType, &x));
|
2017-10-25 20:18:18 -07:00
|
|
|
\\}
|
|
|
|
\\
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn bar(x: *MyType) bool {
|
2017-10-25 20:18:18 -07:00
|
|
|
\\ return x.blah;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:9:13: error: type '*MyType' does not support field access",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-10-26 07:00:23 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"carriage return special case",
|
2018-01-25 01:10:11 -08:00
|
|
|
"fn test() bool {\r\n" ++
|
2018-05-28 17:23:55 -07:00
|
|
|
" true\r\n" ++
|
|
|
|
"}\r\n",
|
|
|
|
".tmp_source.zig:1:17: error: invalid carriage return, only '\\n' line endings are supported",
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add(
|
|
|
|
"non-printable invalid character",
|
|
|
|
"\xff\xfe" ++
|
|
|
|
\\fn test() bool {\r
|
|
|
|
\\ true\r
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:1:1: error: invalid character: '\\xff'",
|
|
|
|
);
|
2017-10-26 07:00:23 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-printable invalid character with escape alternative",
|
2018-01-25 01:10:11 -08:00
|
|
|
"fn test() bool {\n" ++
|
2018-05-28 17:23:55 -07:00
|
|
|
"\ttrue\n" ++
|
|
|
|
"}\n",
|
|
|
|
".tmp_source.zig:2:1: error: invalid character: '\\t'",
|
|
|
|
);
|
2017-10-26 07:00:23 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@ArgType given non function parameter",
|
2017-11-04 13:19:43 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @ArgType(i32, 3);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:18: error: expected function, found 'i32'",
|
|
|
|
);
|
2017-11-04 13:19:43 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@ArgType arg index out of bounds",
|
2017-11-04 13:19:43 -07:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @ArgType(@typeOf(add), 2);
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn add(a: i32, b: i32) i32 { return a + b; }
|
2017-11-04 13:19:43 -07:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:32: error: arg index 2 out of bounds; 'fn(i32, i32) i32' has 2 arguments",
|
|
|
|
);
|
2017-11-06 19:07:19 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberType on unsupported type",
|
2017-11-06 19:07:19 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @memberType(i32, 0);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:21: error: type 'i32' does not support @memberType",
|
|
|
|
);
|
2017-11-06 19:07:19 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberType on enum",
|
2017-12-03 17:43:56 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @memberType(Foo, 0);
|
|
|
|
\\}
|
|
|
|
\\const Foo = enum {A,};
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:21: error: type 'Foo' does not support @memberType",
|
|
|
|
);
|
2017-12-03 17:43:56 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberType struct out of bounds",
|
2017-11-06 19:07:19 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @memberType(Foo, 0);
|
|
|
|
\\}
|
|
|
|
\\const Foo = struct {};
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:26: error: member index 0 out of bounds; 'Foo' has 0 members",
|
|
|
|
);
|
2017-11-06 19:07:19 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberType union out of bounds",
|
2017-11-06 19:07:19 -08:00
|
|
|
\\comptime {
|
2017-12-02 19:31:42 -08:00
|
|
|
\\ _ = @memberType(Foo, 1);
|
2017-11-06 19:07:19 -08:00
|
|
|
\\}
|
2017-12-03 17:43:56 -08:00
|
|
|
\\const Foo = union {A: void,};
|
2017-11-06 19:07:19 -08:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members",
|
|
|
|
);
|
2017-11-06 19:07:19 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberName on unsupported type",
|
2017-11-06 19:07:19 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @memberName(i32, 0);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:21: error: type 'i32' does not support @memberName",
|
|
|
|
);
|
2017-11-06 19:07:19 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberName struct out of bounds",
|
2017-11-06 19:07:19 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @memberName(Foo, 0);
|
|
|
|
\\}
|
|
|
|
\\const Foo = struct {};
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:26: error: member index 0 out of bounds; 'Foo' has 0 members",
|
|
|
|
);
|
2017-11-06 19:07:19 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberName enum out of bounds",
|
2017-11-06 19:07:19 -08:00
|
|
|
\\comptime {
|
2017-12-02 19:31:42 -08:00
|
|
|
\\ _ = @memberName(Foo, 1);
|
2017-11-06 19:07:19 -08:00
|
|
|
\\}
|
2017-12-02 19:31:42 -08:00
|
|
|
\\const Foo = enum {A,};
|
2017-11-06 19:07:19 -08:00
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members",
|
|
|
|
);
|
2017-11-09 08:30:39 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@memberName union out of bounds",
|
2017-12-03 17:43:56 -08:00
|
|
|
\\comptime {
|
|
|
|
\\ _ = @memberName(Foo, 1);
|
|
|
|
\\}
|
|
|
|
\\const Foo = union {A:i32,};
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members",
|
|
|
|
);
|
2017-12-03 17:43:56 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"calling var args extern function, passing array instead of pointer",
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ foo("hello",);
|
2017-11-09 08:30:39 -08:00
|
|
|
\\}
|
2018-05-31 07:56:59 -07:00
|
|
|
\\pub extern fn foo(format: *const u8, ...) void;
|
2017-11-09 08:30:39 -08:00
|
|
|
,
|
2018-05-31 07:56:59 -07:00
|
|
|
".tmp_source.zig:2:9: error: expected type '*const u8', found '[5]u8'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-11-25 15:16:33 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"constant inside comptime function has compile error",
|
2017-11-25 15:16:33 -08:00
|
|
|
\\const ContextAllocator = MemoryPool(usize);
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\pub fn MemoryPool(comptime T: type) type {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ const free_list_t = @compileError("aoeu",);
|
2017-11-25 15:16:33 -08:00
|
|
|
\\
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ return struct {
|
2017-11-25 15:16:33 -08:00
|
|
|
\\ free_list: free_list_t,
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ };
|
2017-11-25 15:16:33 -08:00
|
|
|
\\}
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-11-25 15:16:33 -08:00
|
|
|
\\ var allocator: ContextAllocator = undefined;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:4:25: error: aoeu",
|
|
|
|
".tmp_source.zig:1:36: note: called from here",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:12:20: note: referenced here",
|
|
|
|
);
|
2017-11-30 18:46:02 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"specify enum tag type that is too small",
|
2017-11-30 18:46:02 -08:00
|
|
|
\\const Small = enum (u2) {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\ Three,
|
|
|
|
\\ Four,
|
|
|
|
\\ Five,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-11-30 18:46:02 -08:00
|
|
|
\\ var x = Small.One;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:20: error: 'u2' too small to hold all bits; must be at least 'u3'",
|
|
|
|
);
|
2017-11-30 18:46:02 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"specify non-integer enum tag type",
|
2017-11-30 18:46:02 -08:00
|
|
|
\\const Small = enum (f32) {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\ Three,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-11-30 18:46:02 -08:00
|
|
|
\\ var x = Small.One;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:20: error: expected integer, found 'f32'",
|
|
|
|
);
|
2017-12-02 14:12:37 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"implicitly casting enum to tag type",
|
2017-12-02 14:12:37 -08:00
|
|
|
\\const Small = enum(u2) {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\ Three,
|
|
|
|
\\ Four,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-02 14:12:37 -08:00
|
|
|
\\ var x: u2 = Small.Two;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:9:22: error: expected type 'u2', found 'Small'",
|
|
|
|
);
|
2017-12-02 14:12:37 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"explicitly casting non tag type to enum",
|
2017-12-02 14:12:37 -08:00
|
|
|
\\const Small = enum(u2) {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\ Three,
|
|
|
|
\\ Four,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-02 14:12:37 -08:00
|
|
|
\\ var y = u3(3);
|
2018-06-19 00:50:38 -07:00
|
|
|
\\ var x = @intToEnum(Small, y);
|
2017-12-02 14:12:37 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-06-19 00:50:38 -07:00
|
|
|
".tmp_source.zig:10:31: error: expected type 'u2', found 'u3'",
|
2018-05-28 17:23:55 -07:00
|
|
|
);
|
2017-12-02 14:12:37 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non unsigned integer enum tag type",
|
2017-12-02 14:12:37 -08:00
|
|
|
\\const Small = enum(i2) {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\ Three,
|
|
|
|
\\ Four,
|
|
|
|
\\};
|
|
|
|
\\
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-02 14:12:37 -08:00
|
|
|
\\ var y = Small.Two;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:19: error: expected unsigned integer, found 'i2'",
|
|
|
|
);
|
2017-12-02 19:31:42 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"struct fields with value assignments",
|
2017-12-02 19:31:42 -08:00
|
|
|
\\const MultipleChoice = struct {
|
|
|
|
\\ A: i32 = 20,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-02 19:31:42 -08:00
|
|
|
\\ var x: MultipleChoice = undefined;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:14: error: enums, not structs, support field assignment",
|
|
|
|
);
|
2017-12-02 19:31:42 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"union fields with value assignments",
|
2017-12-02 19:31:42 -08:00
|
|
|
\\const MultipleChoice = union {
|
|
|
|
\\ A: i32 = 20,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:56:27 -08:00
|
|
|
\\ var x: MultipleChoice = undefined;
|
2017-12-02 19:31:42 -08:00
|
|
|
\\}
|
|
|
|
,
|
2017-12-03 17:43:56 -08:00
|
|
|
".tmp_source.zig:2:14: error: non-enum union field assignment",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:24: note: consider 'union(enum)' here",
|
|
|
|
);
|
2017-12-02 19:31:42 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"enum with 0 fields",
|
2017-12-02 19:31:42 -08:00
|
|
|
\\const Foo = enum {};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize {
|
2017-12-02 19:31:42 -08:00
|
|
|
\\ return @sizeOf(Foo);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:13: error: enums must have 1 or more fields",
|
|
|
|
);
|
2017-12-02 19:31:42 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"union with 0 fields",
|
2017-12-03 21:56:27 -08:00
|
|
|
\\const Foo = union {};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize {
|
2017-12-03 21:56:27 -08:00
|
|
|
\\ return @sizeOf(Foo);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:13: error: unions must have 1 or more fields",
|
|
|
|
);
|
2017-12-03 21:56:27 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"enum value already taken",
|
2017-12-02 19:31:42 -08:00
|
|
|
\\const MultipleChoice = enum(u32) {
|
|
|
|
\\ A = 20,
|
|
|
|
\\ B = 40,
|
|
|
|
\\ C = 60,
|
|
|
|
\\ D = 1000,
|
|
|
|
\\ E = 60,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-02 19:31:42 -08:00
|
|
|
\\ var x = MultipleChoice.C;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:6:9: error: enum tag value 60 already taken",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:9: note: other occurrence here",
|
|
|
|
);
|
2017-12-03 17:43:56 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"union with specified enum omits field",
|
2017-12-03 17:43:56 -08:00
|
|
|
\\const Letter = enum {
|
|
|
|
\\ A,
|
|
|
|
\\ B,
|
|
|
|
\\ C,
|
|
|
|
\\};
|
|
|
|
\\const Payload = union(Letter) {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B: f64,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() usize {
|
2017-12-03 17:43:56 -08:00
|
|
|
\\ return @sizeOf(Payload);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:6:17: error: enum field missing: 'C'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:5: note: declared here",
|
|
|
|
);
|
2017-12-03 21:32:12 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"@TagType when union has no attached enum",
|
2017-12-03 21:32:12 -08:00
|
|
|
\\const Foo = union {
|
|
|
|
\\ A: i32,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:32:12 -08:00
|
|
|
\\ const x = @TagType(Foo);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:5:24: error: union 'Foo' has no tag",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:13: note: consider 'union(enum)' here",
|
|
|
|
);
|
2017-12-03 21:32:12 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-integer tag type to automatic union enum",
|
2017-12-03 21:32:12 -08:00
|
|
|
\\const Foo = union(enum(f32)) {
|
|
|
|
\\ A: i32,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:32:12 -08:00
|
|
|
\\ const x = @TagType(Foo);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:23: error: expected integer tag type, found 'f32'",
|
|
|
|
);
|
2017-12-03 21:32:12 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"non-enum tag type passed to union",
|
2017-12-03 21:32:12 -08:00
|
|
|
\\const Foo = union(u32) {
|
|
|
|
\\ A: i32,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:32:12 -08:00
|
|
|
\\ const x = @TagType(Foo);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:18: error: expected enum tag type, found 'u32'",
|
|
|
|
);
|
2017-12-03 21:32:12 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"union auto-enum value already taken",
|
2017-12-03 21:32:12 -08:00
|
|
|
\\const MultipleChoice = union(enum(u32)) {
|
|
|
|
\\ A = 20,
|
|
|
|
\\ B = 40,
|
|
|
|
\\ C = 60,
|
|
|
|
\\ D = 1000,
|
|
|
|
\\ E = 60,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:32:12 -08:00
|
|
|
\\ var x = MultipleChoice { .C = {} };
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:6:9: error: enum tag value 60 already taken",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:4:9: note: other occurrence here",
|
|
|
|
);
|
2017-12-03 21:32:12 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"union enum field does not match enum",
|
2017-12-03 21:56:27 -08:00
|
|
|
\\const Letter = enum {
|
|
|
|
\\ A,
|
|
|
|
\\ B,
|
|
|
|
\\ C,
|
|
|
|
\\};
|
|
|
|
\\const Payload = union(Letter) {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B: f64,
|
|
|
|
\\ C: bool,
|
|
|
|
\\ D: bool,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:56:27 -08:00
|
|
|
\\ var a = Payload {.A = 1234};
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:10:5: error: enum field not found: 'D'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:16: note: enum declared here",
|
|
|
|
);
|
2017-12-03 21:56:27 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"field type supplied in an enum",
|
2017-12-03 21:56:27 -08:00
|
|
|
\\const Letter = enum {
|
|
|
|
\\ A: void,
|
|
|
|
\\ B,
|
|
|
|
\\ C,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:56:27 -08:00
|
|
|
\\ var b = Letter.B;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:2:8: error: structs and unions, not enums, support field types",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:16: note: consider 'union(enum)' here",
|
|
|
|
);
|
2017-12-03 21:56:27 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"struct field missing type",
|
2017-12-03 21:56:27 -08:00
|
|
|
\\const Letter = struct {
|
|
|
|
\\ A,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:56:27 -08:00
|
|
|
\\ var a = Letter { .A = {} };
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: error: struct field missing type",
|
|
|
|
);
|
2017-12-03 21:56:27 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"extern union field missing type",
|
2017-12-03 21:56:27 -08:00
|
|
|
\\const Letter = extern union {
|
|
|
|
\\ A,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-03 21:56:27 -08:00
|
|
|
\\ var a = Letter { .A = {} };
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:2:5: error: union field missing type",
|
|
|
|
);
|
2017-12-03 21:56:27 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"extern union given enum tag type",
|
2017-12-03 21:56:27 -08:00
|
|
|
\\const Letter = enum {
|
|
|
|
\\ A,
|
|
|
|
\\ B,
|
|
|
|
\\ C,
|
|
|
|
\\};
|
|
|
|
\\const Payload = extern union(Letter) {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B: f64,
|
|
|
|
\\ C: bool,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ var a = Payload { .A = 1234 };
|
2017-12-03 21:56:27 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:6:29: error: extern union does not support enum tag type",
|
|
|
|
);
|
2017-12-03 21:56:27 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"packed union given enum tag type",
|
2017-12-03 21:56:27 -08:00
|
|
|
\\const Letter = enum {
|
|
|
|
\\ A,
|
|
|
|
\\ B,
|
|
|
|
\\ C,
|
|
|
|
\\};
|
|
|
|
\\const Payload = packed union(Letter) {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B: f64,
|
|
|
|
\\ C: bool,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ var a = Payload { .A = 1234 };
|
2017-12-03 21:56:27 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:6:29: error: packed union does not support enum tag type",
|
|
|
|
);
|
2017-12-03 21:56:27 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"switch on union with no attached enum",
|
2017-12-03 21:56:27 -08:00
|
|
|
\\const Payload = union {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B: f64,
|
|
|
|
\\ C: bool,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-21 21:50:30 -08:00
|
|
|
\\ const a = Payload { .A = 1234 };
|
2017-12-03 21:56:27 -08:00
|
|
|
\\ foo(a);
|
|
|
|
\\}
|
2018-05-31 07:56:59 -07:00
|
|
|
\\fn foo(a: *const Payload) void {
|
2018-05-17 20:21:44 -07:00
|
|
|
\\ switch (a.*) {
|
2017-12-03 21:56:27 -08:00
|
|
|
\\ Payload.A => {},
|
|
|
|
\\ else => unreachable,
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-17 20:21:44 -07:00
|
|
|
".tmp_source.zig:11:14: error: switch on union which has no attached enum",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:17: note: consider 'union(enum)' here",
|
|
|
|
);
|
2017-12-05 15:09:22 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"enum in field count range but not matching tag",
|
2017-12-05 15:09:22 -08:00
|
|
|
\\const Foo = enum(u32) {
|
|
|
|
\\ A = 10,
|
|
|
|
\\ B = 11,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2018-06-19 00:50:38 -07:00
|
|
|
\\ var x = @intToEnum(Foo, 0);
|
2017-12-05 15:09:22 -08:00
|
|
|
\\}
|
|
|
|
,
|
2018-06-19 00:50:38 -07:00
|
|
|
".tmp_source.zig:6:13: error: enum 'Foo' has no tag matching integer value 0",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:1:13: note: 'Foo' declared here",
|
|
|
|
);
|
2017-12-05 17:46:58 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"comptime cast enum to union but field has payload",
|
2017-12-05 17:46:58 -08:00
|
|
|
\\const Letter = enum { A, B, C };
|
|
|
|
\\const Value = union(Letter) {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B,
|
|
|
|
\\ C,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-05 17:46:58 -08:00
|
|
|
\\ var x: Value = Letter.A;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:8:26: error: cast to union 'Value' must initialize 'i32' field 'A'",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:5: note: field 'A' declared here",
|
|
|
|
);
|
2017-12-05 17:46:58 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"runtime cast to union which has non-void fields",
|
2017-12-05 17:46:58 -08:00
|
|
|
\\const Letter = enum { A, B, C };
|
|
|
|
\\const Value = union(Letter) {
|
|
|
|
\\ A: i32,
|
|
|
|
\\ B,
|
|
|
|
\\ C,
|
|
|
|
\\};
|
2018-01-25 01:10:11 -08:00
|
|
|
\\export fn entry() void {
|
2017-12-05 17:46:58 -08:00
|
|
|
\\ foo(Letter.A);
|
|
|
|
\\}
|
2018-01-25 01:10:11 -08:00
|
|
|
\\fn foo(l: Letter) void {
|
2017-12-05 17:46:58 -08:00
|
|
|
\\ var x: Value = l;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
".tmp_source.zig:11:20: error: runtime cast to union 'Value' which has non-void fields",
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:5: note: field 'A' has type 'i32'",
|
|
|
|
);
|
2018-02-27 15:51:22 -08:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"taking offset of void field in struct",
|
2018-03-13 22:07:40 -07:00
|
|
|
\\const Empty = struct {
|
|
|
|
\\ val: void,
|
|
|
|
\\};
|
|
|
|
\\export fn foo() void {
|
2018-05-28 17:23:55 -07:00
|
|
|
\\ const fieldOffset = @offsetOf(Empty, "val",);
|
2018-03-13 22:07:40 -07:00
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:5:42: error: zero-bit field 'val' in struct 'Empty' has no offset",
|
|
|
|
);
|
2018-05-01 03:00:39 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"invalid union field access in comptime",
|
2018-05-01 03:00:39 -07:00
|
|
|
\\const Foo = union {
|
|
|
|
\\ Bar: u8,
|
|
|
|
\\ Baz: void,
|
|
|
|
\\};
|
|
|
|
\\comptime {
|
|
|
|
\\ var foo = Foo {.Baz = {}};
|
|
|
|
\\ const bar_val = foo.Bar;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:7:24: error: accessing union field 'Bar' while field 'Baz' is set",
|
|
|
|
);
|
2018-05-01 03:09:34 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"getting return type of generic function",
|
2018-04-28 08:17:48 -07:00
|
|
|
\\fn generic(a: var) void {}
|
|
|
|
\\comptime {
|
|
|
|
\\ _ = @typeOf(generic).ReturnType;
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:25: error: ReturnType has not been resolved because 'fn(var)var' is generic",
|
|
|
|
);
|
2018-04-28 08:17:48 -07:00
|
|
|
|
2018-05-28 17:23:55 -07:00
|
|
|
cases.add(
|
|
|
|
"getting @ArgType of generic function",
|
2018-04-28 08:17:48 -07:00
|
|
|
\\fn generic(a: var) void {}
|
|
|
|
\\comptime {
|
|
|
|
\\ _ = @ArgType(@typeOf(generic), 0);
|
|
|
|
\\}
|
|
|
|
,
|
2018-05-28 17:23:55 -07:00
|
|
|
".tmp_source.zig:3:36: error: @ArgType could not resolve the type of arg 0 because 'fn(var)var' is generic",
|
|
|
|
);
|
2017-04-19 01:12:22 -07:00
|
|
|
}
|