summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/incr-foreign-head-span/second_crate.rs
blob: 102f6b26c8d7574201e0095b5902f90480b5d210 (plain)
1
2
3
4
5
6
7
8
extern crate first_crate;
use first_crate::OtherTrait;

#[cfg(not(second_run))]
trait Foo: OtherTrait {}

#[cfg(second_run)]
trait Bar: OtherTrait {}