From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/parser/assoc-oddities-1.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/ui/parser/assoc-oddities-1.rs (limited to 'tests/ui/parser/assoc-oddities-1.rs') diff --git a/tests/ui/parser/assoc-oddities-1.rs b/tests/ui/parser/assoc-oddities-1.rs new file mode 100644 index 000000000..5914805e5 --- /dev/null +++ b/tests/ui/parser/assoc-oddities-1.rs @@ -0,0 +1,11 @@ +// compile-flags: -Z parse-only + +fn main() { + // following lines below parse and must not fail + x = if c { a } else { b }(); + x = if true { 1 } else { 0 } as *mut _; + // however this does not parse and probably should fail to retain compat? + // N.B., `..` here is arbitrary, failure happens/should happen ∀ops that aren’t `=` + // see assoc-oddities-2 and assoc-oddities-3 + ..if c { a } else { b }[n]; //~ ERROR expected one of +} -- cgit v1.2.3