2014-10-09 16:31:03 +02:00
|
|
|
// min-lldb-version: 310
|
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
|
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() { }
|