//ww:error "bare source structurally matches >=2 NAMED variants" // 944_variant_chain_b95 bare_ambig: a bare *i32 source matches both p1 and p2 // (#15/#218). BOTH stages loud-stop. package main; type p1 = *i32; type p2 = *i32; export fn main() i32 = { let x: i32 = 7; let v: (p1 | p2) = &x; return 0; };