mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 11:17:40 +00:00
12 lines
139 B
Rust
12 lines
139 B
Rust
//@ revisions:rpass1 rpass2
|
|
//@ ignore-backends: gcc
|
|
|
|
struct A;
|
|
|
|
#[cfg(rpass2)]
|
|
impl From<A> for () {
|
|
fn from(_: A) {}
|
|
}
|
|
|
|
fn main() {}
|