2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2019-03-12 00:49:17 +00:00
|
|
|
//@ aux-build:issue-2723-a.rs
|
2012-07-11 12:33:55 -07:00
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate issue_2723_a;
|
2013-10-02 20:00:54 -07:00
|
|
|
use issue_2723_a::f;
|
2012-07-11 12:33:55 -07:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2013-01-23 11:43:58 -08:00
|
|
|
unsafe {
|
2016-10-29 22:54:04 +01:00
|
|
|
f(vec![2]);
|
2013-01-23 11:43:58 -08:00
|
|
|
}
|
|
|
|
}
|