summary refs log tree commit diff
path: root/src/test/ui/issues/issue-16250.rs
blob: bf01627adfc1f55395a47283f414f3eb7ed919ef (plain)
1
2
3
4
5
6
7
8
9
10
#![deny(warnings)]

pub struct Foo;

extern {
    pub fn foo(x: (Foo)); //~ ERROR unspecified layout
}

fn main() {
}