summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-18514.rs
blob: 48e7f07418f4f854857ef2a7938adb0c0065337b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass
// Test that we don't ICE when codegenning a generic impl method from
// an extern crate that contains a match expression on a local
// variable place where one of the match case bodies contains an
// expression that autoderefs through an overloaded generic deref
// impl.

// aux-build:issue-18514.rs

extern crate issue_18514 as ice;
use ice::{Tr, St};

fn main() {
    let st: St<()> = St(vec![]);
    st.tr();
}