mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
411 B
Rust
18 lines
411 B
Rust
// ignore-windows
|
|
|
|
// compile-flags: -g -C no-prepopulate-passes
|
|
|
|
// CHECK-LABEL: @main
|
|
// CHECK: {{.*}}DICompositeType{{.*}}tag: DW_TAG_structure_type,{{.*}}name: "Generic<i32>",{{.*}}
|
|
// CHECK: {{.*}}DITemplateTypeParameter{{.*}}name: "Type",{{.*}}
|
|
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
#![allow(unused_assignments)]
|
|
|
|
pub struct Generic<Type>(Type);
|
|
|
|
fn main () {
|
|
let generic = Generic(10);
|
|
}
|