2021-04-03 13:05:11 +02:00
|
|
|
//
|
2018-09-27 15:50:17 -07:00
|
|
|
//@ compile-flags: -g --remap-path-prefix={{cwd}}=/the/aux-cwd --remap-path-prefix={{src-base}}/remap_path_prefix/auxiliary=/the/aux-src
|
|
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
2023-03-24 16:24:37 -04:00
|
|
|
pub fn foo<T: Default>() -> T {
|
|
|
|
|
T::default()
|
|
|
|
|
}
|