// Tests that shapes respect linearize_ty_params(). enum option { none; some(T); } type smallintmap = @{mutable v: [mutable option]}; fn mk() -> smallintmap { let v: [mutable option] = [mutable]; ret @{mutable v: v}; } fn f() { let sim = mk::(); log(error, sim); } fn main() { f::(); }