mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-05 17:10:21 +00:00
15 lines
355 B
Rust
15 lines
355 B
Rust
// compile-flags: -C no-prepopulate-passes -Zshare-generics=yes
|
|
|
|
// Check that local generics are internalized if they are in the same CGU
|
|
|
|
// CHECK-LABEL: ; local_generics_in_exe_internalized::foo
|
|
// CHECK-NEXT: ; Function Attrs:
|
|
// CHECK-NEXT: define internal
|
|
pub fn foo<T>(x: T, y: T) -> (T, T) {
|
|
(x, y)
|
|
}
|
|
|
|
fn main() {
|
|
let _ = foo(0u8, 1u8);
|
|
}
|