From 1b7fb177455dbe70a461a1ede724c346d3e8f49d Mon Sep 17 00:00:00 2001 From: Eduard Burtescu Date: Sun, 21 Feb 2016 13:52:41 +0200 Subject: [PATCH] Test that function types are actually zero-sized. --- src/test/run-pass/fn-item-type-zero-sized.rs | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/test/run-pass/fn-item-type-zero-sized.rs diff --git a/src/test/run-pass/fn-item-type-zero-sized.rs b/src/test/run-pass/fn-item-type-zero-sized.rs new file mode 100644 index 00000000000..5fdaf083d07 --- /dev/null +++ b/src/test/run-pass/fn-item-type-zero-sized.rs @@ -0,0 +1,22 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// Test that fn item types are zero-sized. + +use std::mem::{size_of, size_of_val}; + +fn main() { + assert_eq!(size_of_val(&main), 0); + + let (a, b) = (size_of::, size_of::); + assert_eq!(size_of_val(&a), 0); + assert_eq!(size_of_val(&b), 0); + assert_eq!((a(), b()), (1, 2)); +}