mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
9 lines
172 B
Rust
9 lines
172 B
Rust
// run-pass
|
|
|
|
use std::mem;
|
|
|
|
pub fn main() {
|
|
// Bare functions should just be a pointer
|
|
assert_eq!(mem::size_of::<extern "Rust" fn()>(), mem::size_of::<isize>());
|
|
}
|