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