mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-22 20:03:37 +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() {}
|