about summary refs log tree commit diff
path: root/tests/ui/struct-ctor-mangling.rs
blob: 159e21d28635b747dff20771ef9e0eced8e8ee03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass

fn size_of_val<T>(_: &T) -> usize {
    std::mem::size_of::<T>()
}

struct Foo(#[allow(dead_code)] i64);

// Test that the (symbol) mangling of `Foo` (the `struct` type) and that of
// `typeof Foo` (the function type of the `struct` constructor) don't collide.
fn main() {
    size_of_val(&Foo(0));
    size_of_val(&Foo);
}