rust/tests/incremental/issue-60629.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
114 B
Rust
Raw Normal View History

2019-05-10 05:02:31 -05:00
//@ revisions:rpass1 rpass2
struct A;
#[cfg(rpass2)]
impl From<A> for () {
fn from(_: A) {}
}
fn main() {}