2014-05-30 17:09:16 +02:00
|
|
|
//@ aux-build:cross_crate_debuginfo_type_uniquing.rs
|
|
|
|
|
extern crate cross_crate_debuginfo_type_uniquing;
|
|
|
|
|
|
|
|
|
|
//@ no-prefer-dynamic
|
2014-09-21 00:36:17 -04:00
|
|
|
//@ compile-flags:-g -C lto
|
2025-10-02 23:56:27 +02:00
|
|
|
//@ ignore-backends: gcc
|
2014-05-30 17:09:16 +02:00
|
|
|
|
|
|
|
|
pub struct C;
|
|
|
|
|
pub fn p() -> C {
|
|
|
|
|
C
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-21 03:39:03 -07:00
|
|
|
fn main() { }
|