diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:02:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:02:58 +0000 |
commit | 698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch) | |
tree | 173a775858bd501c378080a10dca74132f05bc50 /src/test/pretty/block-disambig.rs | |
parent | Initial commit. (diff) | |
download | rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip |
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/pretty/block-disambig.rs')
-rw-r--r-- | src/test/pretty/block-disambig.rs | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/test/pretty/block-disambig.rs b/src/test/pretty/block-disambig.rs new file mode 100644 index 000000000..ac9b84a5d --- /dev/null +++ b/src/test/pretty/block-disambig.rs @@ -0,0 +1,59 @@ +// compile-flags: --crate-type=lib + +// A bunch of tests for syntactic forms involving blocks that were +// previously ambiguous (e.g., 'if true { } *val;' gets parsed as a +// binop) + + +use std::cell::Cell; + +fn test1() { let val = &0; { } *val; } + +fn test2() -> isize { let val = &0; { } *val } + +#[derive(Copy, Clone)] +struct S { eax: isize } + +fn test3() { + let regs = &Cell::new(S {eax: 0}); + match true { true => { } _ => { } } + regs.set(S {eax: 1}); +} + +fn test4() -> bool { let regs = &true; if true { } *regs || false } + +fn test5() -> (isize, isize) { { } (0, 1) } + +fn test6() -> bool { { } (true || false) && true } + +fn test7() -> usize { + let regs = &0; + match true { true => { } _ => { } } + (*regs < 2) as usize +} + +fn test8() -> isize { + let val = &0; + match true { + true => { } + _ => { } + } + if *val < 1 { + 0 + } else { + 1 + } +} + +fn test9() { + let regs = &Cell::new(0); + match true { true => { } _ => { } } regs.set(regs.get() + 1); +} + +fn test10() -> isize { + let regs = vec![0]; + match true { true => { } _ => { } } + regs[0] +} + +fn test11() -> Vec<isize> { if true { } vec![1, 2] } |