mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-13 18:43:19 +00:00
8 lines
214 B
Rust
8 lines
214 B
Rust
#![feature(precise_capturing)]
|
|
|
|
pub fn cross_crate_empty() -> impl Sized + use<> {}
|
|
|
|
pub fn cross_crate_missing() -> impl Sized {}
|
|
|
|
pub fn cross_crate_args<'a, T, const N: usize>() -> impl Sized + use<'a, T, N> {}
|