//error-pattern: unreachable //error-pattern: unreachable //error-pattern: unreachable //error-pattern: unreachable //error-pattern: unreachable fn main() { match 5u { 1u to 10u => { } 5u to 6u => { } _ => {} }; match 5u { 3u to 6u => { } 4u to 6u => { } _ => {} }; match 5u { 4u to 6u => { } 4u to 6u => { } _ => {} }; match 'c' { 'A' to 'z' => {} 'a' to 'z' => {} _ => {} }; match 1.0 { 0.01 to 6.5 => {} 0.02 => {} _ => {} }; }