This website requires JavaScript.
Explore
Help
Sign In
jimzah
/
zig
Watch
1
Star
0
Fork
0
You've already forked zig
mirror of
https://github.com/ziglang/zig.git
synced
2024-11-30 17:12:31 +00:00
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
0c83fa2fd0
zig
/
test
/
cases
/
optionals.3.zig
10 lines
112 B
Zig
Raw
Normal View
History
Unescape
Escape
test: migrate wasm incremental tests
2022-04-27 21:59:55 +01:00
pub
fn
main
(
)
u8
{
var
x
:
u8
=
5
;
var
y
:
?
u8
=
x
;
test: update cases to silence 'var is never mutated' errors
2023-11-11 07:27:31 +00:00
_
=
.
{
&
x
,
&
y
}
;
test: migrate wasm incremental tests
2022-04-27 21:59:55 +01:00
return
y
.
?
-
5
;
}
// run
//
Reference in New Issue
Copy Permalink