mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
201 B
Rust
10 lines
201 B
Rust
pub fn you<T>() -> T {
|
|
become bottom(); //~ error: `become` expression is experimental
|
|
}
|
|
|
|
pub fn bottom<T>() -> T {
|
|
become you(); //~ error: `become` expression is experimental
|
|
}
|
|
|
|
fn main() {}
|