rust/tests/ui/abi/rustcall-generic.rs
2023-01-11 09:32:08 +00:00

13 lines
228 B
Rust

// revisions: normal opt
// check-pass
//[opt] compile-flags: -Zmir-opt-level=3
#![feature(unboxed_closures, tuple_trait)]
extern "rust-call" fn foo<T: std::marker::Tuple>(_: T) {}
fn main() {
foo(());
foo((1, 2));
}