zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit ed21be011a57b6aa48470168315d86b5f93d29ea (tree)
parent 438feebbcf687db47ff4a4be71a67b8587b2d987
Author: Andrew Kelley <superjoe30@gmail.com>
Date:   Thu,  5 Jan 2017 04:03:25 -0500

pass unreachable variable test

Diffstat:
Mtest/run_tests.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/run_tests.cpp b/test/run_tests.cpp @@ -771,11 +771,11 @@ fn f() { fn f() { const a = return; } - )SOURCE", 1, ".tmp_source.zig:3:5: error: variable initialization is unreachable"); + )SOURCE", 1, ".tmp_source.zig:3:5: error: unreachable code"); add_compile_fail_case("unreachable variable", R"SOURCE( fn f() { - const a : unreachable = return; + const a : unreachable = {}; } )SOURCE", 1, ".tmp_source.zig:3:15: error: variable of type 'unreachable' not allowed");