mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
13 lines
338 B
Rust
13 lines
338 B
Rust
//@ aux-crate:priv:reexport_search_unbox=reexport-search_unbox.rs
|
|
//@ compile-flags: -Zunstable-options --extern equivalent
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
extern crate reexport_search_unbox;
|
|
|
|
pub use reexport_search_unbox::{Inside, Out, Out1, Out2};
|
|
|
|
pub fn alpha<const N: usize, T>(_: Inside<T>) -> Out<Out1<T, N>, Out2<T, N>> {
|
|
loop {}
|
|
}
|