From f6a243d231910a42822d4a287f6183698474022a Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Thu, 2 Jun 2016 23:58:47 +0200 Subject: [PATCH] Add regression test for issue #32829 Closes #32829 --- src/test/compile-fail/issue-32829.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/test/compile-fail/issue-32829.rs diff --git a/src/test/compile-fail/issue-32829.rs b/src/test/compile-fail/issue-32829.rs new file mode 100644 index 0000000000000..9ac70882ca28c --- /dev/null +++ b/src/test/compile-fail/issue-32829.rs @@ -0,0 +1,17 @@ +// 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. + +// error-pattern: calls in statics are limited + +static S : u64 = { { panic!("foo"); 0 } }; + +fn main() { + println!("{:?}", S); +}