From 142134d54fb20b0669754f439cf0001869c406b5 Mon Sep 17 00:00:00 2001 From: Seiichi Uchida Date: Fri, 12 Jan 2018 19:54:52 +0900 Subject: Ignore CTFE errors while lowering patterns Closes #43105. --- src/test/compile-fail/issue-43105.rs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/test/compile-fail/issue-43105.rs (limited to 'src/test') diff --git a/src/test/compile-fail/issue-43105.rs b/src/test/compile-fail/issue-43105.rs new file mode 100644 index 00000000000..fb419d751b4 --- /dev/null +++ b/src/test/compile-fail/issue-43105.rs @@ -0,0 +1,21 @@ +// 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. + +fn xyz() -> u8 { 42 } + +const NUM: u8 = xyz(); +//~^ ERROR calls in constants are limited to constant functions, struct and enum constructors + +fn main() { + match 1 { + NUM => unimplemented!(), + _ => unimplemented!(), + } +} -- cgit 1.4.1-3-g733a5