2014-12-10 16:24:10 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
// aux-build:trait_safety_lib.rs
|
2014-12-10 16:24:10 -06:00
|
|
|
|
|
|
|
// Simple smoke test that unsafe traits can be compiled across crates.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
extern crate trait_safety_lib as lib;
|
2014-12-10 16:24:10 -06:00
|
|
|
|
|
|
|
use lib::Foo;
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
struct Bar { x: isize }
|
2014-12-10 16:24:10 -06:00
|
|
|
unsafe impl Foo for Bar {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn foo(&self) -> isize { self.x }
|
2014-12-10 16:24:10 -06:00
|
|
|
}
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
fn take_foo<F:Foo>(f: &F) -> isize { f.foo() }
|
2014-12-10 16:24:10 -06:00
|
|
|
|
|
|
|
fn main() {
|
2015-03-25 19:06:52 -05:00
|
|
|
let x: isize = 22;
|
2014-12-10 16:24:10 -06:00
|
|
|
assert_eq!(22, take_foo(&x));
|
|
|
|
|
|
|
|
let x: Bar = Bar { x: 23 };
|
|
|
|
assert_eq!(23, take_foo(&x));
|
|
|
|
}
|