// Copyright 2018 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. #![feature(const_needs_drop)] use std::mem; struct Trivial(u8, f32); struct NonTrivial(u8, String); const CONST_U8: bool = mem::needs_drop::(); const CONST_STRING: bool = mem::needs_drop::(); const CONST_TRIVIAL: bool = mem::needs_drop::(); const CONST_NON_TRIVIAL: bool = mem::needs_drop::(); static STATIC_U8: bool = mem::needs_drop::(); static STATIC_STRING: bool = mem::needs_drop::(); static STATIC_TRIVIAL: bool = mem::needs_drop::(); static STATIC_NON_TRIVIAL: bool = mem::needs_drop::(); fn main() { assert!(!CONST_U8); assert!(CONST_STRING); assert!(!CONST_TRIVIAL); assert!(CONST_NON_TRIVIAL); assert!(!STATIC_U8); assert!(STATIC_STRING); assert!(!STATIC_TRIVIAL); assert!(STATIC_NON_TRIVIAL); }