diff options
| author | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-07-20 19:35:08 +0200 |
|---|---|---|
| committer | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-07-20 19:35:08 +0200 |
| commit | 92fad0fa9eb2de43e04ddd49a2478f2767e1ebf4 (patch) | |
| tree | 206641b7ec3ffb366d8aae43f719ca905593ea46 | |
| parent | 7064f69c43296ca0200c7892422ea9411c322181 (diff) | |
| download | rust-92fad0fa9eb2de43e04ddd49a2478f2767e1ebf4.tar.gz rust-92fad0fa9eb2de43e04ddd49a2478f2767e1ebf4.zip | |
Add test
| -rw-r--r-- | src/test/run-pass/invalid_const_promotion.rs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/test/run-pass/invalid_const_promotion.rs b/src/test/run-pass/invalid_const_promotion.rs new file mode 100644 index 00000000000..eb6deb13993 --- /dev/null +++ b/src/test/run-pass/invalid_const_promotion.rs @@ -0,0 +1,35 @@ +// 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 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![feature(const_fn)] +#![allow(const_err)] + +use std::env; +use std::process::{Command, Stdio}; + +const fn bar() -> usize { 0 - 1 } + +fn foo() { + let _: &'static _ = &bar(); +} + +fn main() { + let args: Vec<String> = env::args().collect(); + if args.len() > 1 && args[1] == "test" { + foo(); + return; + } + + let mut p = Command::new(&args[0]) + .stdout(Stdio::piped()) + .stdin(Stdio::piped()) + .arg("test").output().unwrap(); + assert!(!p.status.success()); +} \ No newline at end of file |
