Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
incremental
/
issue-62649-path-collisions-happen.rs
blob: 3b04f0ac9d71a553380d18a359bf6962f7107317 [
file
] [
log
] [
blame
]
//@ revisions: rpass1 rpass2
#[
cfg
(
rpass1
)]
pub
trait
Something
{
fn
foo
();
}
#[
cfg
(
rpass2
)]
pub
struct
Something
{
pub
foo
:
u8
,
}
fn
main
()
{}