mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
292 B
Rust
14 lines
292 B
Rust
// aux-build:auto-traits.rs
|
|
|
|
#![feature(auto_traits)]
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
extern crate auto_traits;
|
|
|
|
// @has 'foo/trait.Foo.html' '//pre' 'pub unsafe auto trait Foo'
|
|
pub unsafe auto trait Foo {}
|
|
|
|
// @has 'foo/trait.Bar.html' '//pre' 'pub unsafe auto trait Bar'
|
|
pub use auto_traits::Bar;
|