summary refs log tree commit diff
path: root/tests/ui/issues/issue-9155.rs
blob: e177c5978005c91ea8bceb7c542cf93839096f17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ run-pass
//@ aux-build:issue-9155.rs

//@ pretty-expanded FIXME #23616

extern crate issue_9155;

struct Baz;

pub fn main() {
    issue_9155::Foo::new(Baz);
}