rust/tests/ui/symbol-names/struct-constructor-mangling.rs
Kivooeo c0597fbd80 cleaned up some tests
Reverting file name weird-exprs.rs due to its historical use, recognition in community and references
2025-07-17 15:51:32 +05:00

15 lines
285 B
Rust

//! Test that the symbol mangling of Foo-the-constructor-function versus Foo-the-type do not collide
//@ run-pass
fn size_of_val<T>(_: &T) -> usize {
std::mem::size_of::<T>()
}
struct Foo(#[allow(dead_code)] i64);
fn main() {
size_of_val(&Foo(0));
size_of_val(&Foo);
}