aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/link/simple_function_0.rs
blob: 5bd4926def85a07ab7e450454d8635ab11f2c9ec (plain)
1
2
3
4
5
6
7
8
extern crate simple_function_1;
use simple_function_1::test_func;

fn main() -> i32 {
    let a = test_func(123);
    // { dg-bogus "call to extern function" "" { xfail *-*-* } .-1 }
    a - 124
}