mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
9 lines
150 B
Rust
9 lines
150 B
Rust
extern crate first_crate;
|
|
use first_crate::OtherTrait;
|
|
|
|
#[cfg(not(second_run))]
|
|
trait Foo: OtherTrait {}
|
|
|
|
#[cfg(second_run)]
|
|
trait Bar: OtherTrait {}
|