2017-01-05 00:57:48 -08:00
|
|
|
const assert = @import("std").debug.assert;
|
|
|
|
const str = @import("std").str;
|
|
|
|
|
2016-12-18 21:41:37 -08:00
|
|
|
pub fn foo() -> %i32 {
|
|
|
|
const x = %return bar();
|
|
|
|
return x + 1
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn bar() -> %i32 {
|
|
|
|
return 13;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn baz() -> %i32 {
|
|
|
|
const y = foo() %% 1234;
|
|
|
|
return y + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn errorWrapping() {
|
|
|
|
@setFnTest(this);
|
|
|
|
|
|
|
|
assert(%%baz() == 15);
|
|
|
|
}
|
|
|
|
|
2016-12-21 21:12:27 -08:00
|
|
|
error ItBroke;
|
|
|
|
fn gimmeItBroke() -> []const u8 {
|
|
|
|
@errorName(error.ItBroke)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn errorName() {
|
|
|
|
@setFnTest(this);
|
2017-01-05 00:57:48 -08:00
|
|
|
assert(str.eql(@errorName(error.AnError), "AnError"));
|
|
|
|
assert(str.eql(@errorName(error.ALongerErrorName), "ALongerErrorName"));
|
2016-12-21 21:12:27 -08:00
|
|
|
}
|
2016-12-21 22:42:30 -08:00
|
|
|
error AnError;
|
|
|
|
error ALongerErrorName;
|
2016-12-21 21:12:27 -08:00
|
|
|
|
|
|
|
|
2016-12-21 22:20:08 -08:00
|
|
|
fn errorValues() {
|
|
|
|
@setFnTest(this);
|
|
|
|
|
|
|
|
const a = i32(error.err1);
|
|
|
|
const b = i32(error.err2);
|
|
|
|
assert(a != b);
|
|
|
|
}
|
|
|
|
error err1;
|
|
|
|
error err2;
|
|
|
|
|
|
|
|
|
|
|
|
fn redefinitionOfErrorValuesAllowed() {
|
|
|
|
@setFnTest(this);
|
|
|
|
|
|
|
|
shouldBeNotEqual(error.AnError, error.SecondError);
|
|
|
|
}
|
|
|
|
error AnError;
|
|
|
|
error AnError;
|
|
|
|
error SecondError;
|
|
|
|
fn shouldBeNotEqual(a: error, b: error) {
|
|
|
|
if (a == b) @unreachable()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-21 22:42:30 -08:00
|
|
|
fn errBinaryOperator() {
|
|
|
|
@setFnTest(this);
|
|
|
|
|
|
|
|
const a = errBinaryOperatorG(true) %% 3;
|
|
|
|
const b = errBinaryOperatorG(false) %% 3;
|
|
|
|
assert(a == 3);
|
|
|
|
assert(b == 10);
|
|
|
|
}
|
|
|
|
error ItBroke;
|
|
|
|
fn errBinaryOperatorG(x: bool) -> %isize {
|
|
|
|
if (x) {
|
|
|
|
error.ItBroke
|
|
|
|
} else {
|
|
|
|
isize(10)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn unwrapSimpleValueFromError() {
|
|
|
|
@setFnTest(this);
|
|
|
|
|
|
|
|
const i = %%unwrapSimpleValueFromErrorDo();
|
|
|
|
assert(i == 13);
|
|
|
|
}
|
|
|
|
fn unwrapSimpleValueFromErrorDo() -> %isize { 13 }
|
|
|
|
|
2016-12-21 22:20:08 -08:00
|
|
|
|
2016-12-22 05:48:08 -08:00
|
|
|
fn errReturnInAssignment() {
|
|
|
|
@setFnTest(this);
|
|
|
|
|
|
|
|
%%doErrReturnInAssignment();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn doErrReturnInAssignment() -> %void {
|
|
|
|
var x : i32 = undefined;
|
|
|
|
x = %return makeANonErr();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn makeANonErr() -> %i32 {
|
|
|
|
return 1;
|
|
|
|
}
|