2016-02-03 20:34:09 -08:00
|
|
|
#attribute("test")
|
|
|
|
fn empty_function() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* multi line doc comment
|
|
|
|
*/
|
|
|
|
/// this is a documentation comment
|
|
|
|
/// doc comment line 2
|
|
|
|
#attribute("test")
|
|
|
|
fn comments() {
|
|
|
|
comments_f1(/* mid-line comment /* nested */ */ "OK\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn comments_f1(s: []u8) {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#attribute("test")
|
|
|
|
fn fn_call_of_struct_field() {
|
|
|
|
if (call_struct_field(Foo {.ptr = a_func,}) != 13) {
|
|
|
|
unreachable{};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Foo {
|
|
|
|
ptr: fn() -> i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn a_func() -> i32 { 13 }
|
|
|
|
|
|
|
|
fn call_struct_field(foo: Foo) -> i32 {
|
|
|
|
return foo.ptr();
|
|
|
|
}
|
2016-02-03 23:58:45 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-02-04 01:11:50 -08:00
|
|
|
#attribute("test")
|
|
|
|
fn redefinition_of_error_values_allowed() {
|
|
|
|
if (error.AnError == error.SecondError) unreachable{}
|
|
|
|
}
|
2016-02-03 23:58:45 -08:00
|
|
|
error AnError;
|
|
|
|
error AnError;
|
|
|
|
error SecondError;
|
|
|
|
|
2016-02-04 01:11:50 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-02-03 23:58:45 -08:00
|
|
|
#attribute("test")
|
2016-02-04 01:11:50 -08:00
|
|
|
fn constant_enum_with_payload() {
|
2016-02-04 14:26:27 -08:00
|
|
|
var empty = AnEnumWithPayload.Empty;
|
|
|
|
var full = AnEnumWithPayload.Full(13);
|
|
|
|
should_be_empty(empty);
|
|
|
|
should_be_not_empty(full);
|
2016-02-04 01:11:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
fn should_be_empty(x: AnEnumWithPayload) {
|
2016-02-04 14:26:27 -08:00
|
|
|
switch (x) {
|
2016-02-04 15:09:06 -08:00
|
|
|
Empty => {},
|
2016-02-04 14:26:27 -08:00
|
|
|
else => unreachable{},
|
|
|
|
}
|
2016-02-04 01:11:50 -08:00
|
|
|
}
|
|
|
|
|
2016-02-04 01:49:12 -08:00
|
|
|
fn should_be_not_empty(x: AnEnumWithPayload) {
|
2016-02-04 14:26:27 -08:00
|
|
|
switch (x) {
|
2016-02-04 15:09:06 -08:00
|
|
|
Empty => unreachable{},
|
2016-02-04 14:26:27 -08:00
|
|
|
else => {},
|
|
|
|
}
|
2016-02-04 01:11:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
enum AnEnumWithPayload {
|
|
|
|
Empty,
|
|
|
|
Full: i32,
|
2016-02-03 23:58:45 -08:00
|
|
|
}
|
2016-02-04 01:49:12 -08:00
|
|
|
|
|
|
|
|
|
|
|
#attribute("test")
|
|
|
|
fn continue_in_for_loop() {
|
|
|
|
const array = []i32 {1, 2, 3, 4, 5};
|
|
|
|
var sum : i32 = 0;
|
|
|
|
for (x, array) {
|
|
|
|
sum += x;
|
|
|
|
if (x < 3) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (sum != 6) unreachable{}
|
|
|
|
}
|
2016-02-04 11:59:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
#attribute("test")
|
|
|
|
fn cast_bool_to_int() {
|
|
|
|
const t = true;
|
|
|
|
const f = false;
|
|
|
|
if (i32(t) != i32(1)) unreachable{}
|
|
|
|
if (i32(f) != i32(0)) unreachable{}
|
|
|
|
non_const_cast_bool_to_int(t, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn non_const_cast_bool_to_int(t: bool, f: bool) {
|
|
|
|
if (i32(t) != i32(1)) unreachable{}
|
|
|
|
if (i32(f) != i32(0)) unreachable{}
|
|
|
|
}
|
2016-02-04 14:50:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
#attribute("test")
|
|
|
|
fn switch_on_enum() {
|
|
|
|
const fruit = Fruit.Orange;
|
|
|
|
switch (fruit) {
|
2016-02-04 15:09:06 -08:00
|
|
|
Apple => unreachable{},
|
|
|
|
Orange => {},
|
|
|
|
Banana => unreachable{},
|
2016-02-04 14:50:06 -08:00
|
|
|
}
|
|
|
|
non_const_switch_on_enum(fruit);
|
|
|
|
}
|
|
|
|
enum Fruit {
|
|
|
|
Apple,
|
|
|
|
Orange,
|
|
|
|
Banana,
|
|
|
|
}
|
|
|
|
fn non_const_switch_on_enum(fruit: Fruit) {
|
|
|
|
switch (fruit) {
|
2016-02-04 15:09:06 -08:00
|
|
|
Apple => unreachable{},
|
|
|
|
Orange => {},
|
|
|
|
Banana => unreachable{},
|
2016-02-04 14:50:06 -08:00
|
|
|
}
|
|
|
|
}
|
2016-02-04 15:09:06 -08:00
|
|
|
|
|
|
|
#attribute("test")
|
|
|
|
fn switch_statement() {
|
|
|
|
const foo = SwitchStatmentFoo.C;
|
|
|
|
const val: i32 = switch (foo) {
|
|
|
|
A => 1,
|
|
|
|
B => 2,
|
|
|
|
C => 3,
|
|
|
|
D => 4,
|
|
|
|
};
|
|
|
|
if (val != 3) unreachable{};
|
|
|
|
}
|
|
|
|
enum SwitchStatmentFoo {
|
|
|
|
A,
|
|
|
|
B,
|
|
|
|
C,
|
|
|
|
D,
|
|
|
|
}
|