about summary refs log tree commit diff
path: root/tests/debuginfo/cross-crate-type-uniquing.rs
blob: 28ebc3438846713827bbf6a1dabe60e1cba75af7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ aux-build:cross_crate_debuginfo_type_uniquing.rs
extern crate cross_crate_debuginfo_type_uniquing;

//@ no-prefer-dynamic
//@ compile-flags:-g -C lto

pub struct C;
pub fn p() -> C {
    C
}

fn main() { }