mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
parent
072364fc59
commit
cd6330e218
@ -240,7 +240,8 @@ fn (mut p Parser) match_expr() ast.MatchExpr {
|
|||||||
&& (((ast.builtin_type_names_matcher.matches(p.tok.lit) || p.tok.lit[0].is_capital())
|
&& (((ast.builtin_type_names_matcher.matches(p.tok.lit) || p.tok.lit[0].is_capital())
|
||||||
&& p.peek_tok.kind != .lpar) || (p.peek_tok.kind == .dot && p.peek_token(2).lit.len > 0
|
&& p.peek_tok.kind != .lpar) || (p.peek_tok.kind == .dot && p.peek_token(2).lit.len > 0
|
||||||
&& p.peek_token(2).lit[0].is_capital()))) || p.is_only_array_type()
|
&& p.peek_token(2).lit[0].is_capital()))) || p.is_only_array_type()
|
||||||
|| p.tok.kind == .key_fn || p.peek_token(2).kind == .amp {
|
|| p.tok.kind == .key_fn
|
||||||
|
|| (p.tok.kind == .lsbr && p.peek_token(2).kind == .amp) {
|
||||||
mut types := []ast.Type{}
|
mut types := []ast.Type{}
|
||||||
for {
|
for {
|
||||||
// Sum type match
|
// Sum type match
|
||||||
|
29
vlib/v/tests/match_return_reference_test.v
Normal file
29
vlib/v/tests/match_return_reference_test.v
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
struct Foo {}
|
||||||
|
|
||||||
|
fn test_assign_ref_from_match() {
|
||||||
|
var := match 0 {
|
||||||
|
0 {
|
||||||
|
&Foo{}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
unsafe { nil }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
assert var != unsafe { nil }
|
||||||
|
}
|
||||||
|
|
||||||
|
fn return_ref_from_match() &Foo {
|
||||||
|
return match 0 {
|
||||||
|
0 {
|
||||||
|
&Foo{}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
unsafe { nil }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test_return_ref_from_match() {
|
||||||
|
var := return_ref_from_match()
|
||||||
|
assert var != unsafe { nil }
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user