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