summary refs log tree commit diff
path: root/src/test/ui/issues/issue-26997.rs
blob: dd48440720fdaad2f841eed6399f2aeb5f0ad31a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// compile-pass
#![allow(dead_code)]
pub struct Foo {
    x: isize,
    y: isize
}

impl Foo {
    pub extern fn foo_new() -> Foo {
        Foo { x: 21, y: 33 }
    }
}

fn main() {}