2018-10-12 13:34:14 +00:00
|
|
|
//@ ignore-windows
|
2024-03-06 20:44:54 +00:00
|
|
|
//@ ignore-wasi wasi codegens the main symbol differently
|
2018-10-12 13:34:14 +00:00
|
|
|
|
|
|
|
//@ 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);
|
|
|
|
|
2024-05-29 04:11:20 +00:00
|
|
|
fn main() {
|
2018-10-12 13:34:14 +00:00
|
|
|
let generic = Generic(10);
|
|
|
|
}
|