mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
14 lines
213 B
Rust
14 lines
213 B
Rust
//@ check-pass
|
|
#![expect(incomplete_features)]
|
|
#![feature(explicit_tail_calls)]
|
|
|
|
pub const fn test(x: &Type) {
|
|
const fn takes_borrow(_: &Type) {}
|
|
|
|
become takes_borrow(x);
|
|
}
|
|
|
|
pub struct Type;
|
|
|
|
fn main() {}
|