about summary refs log tree commit diff
path: root/tests/run-make/export/extern-opt/app.rs
blob: 765c9925d5f7cfa42c97908b0e7460ca0a37824d (plain)
1
2
3
4
5
6
extern crate libr;
use libr::*;

fn main() {
    assert_eq!(foo(1), 1);
}