From fba9cecab753a87957b9eac19f3c1cc27e048817 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Wed, 17 Jun 2015 19:37:27 -0700 Subject: [PATCH] Add regression test for #25180 Closes #25180 --- src/test/run-pass/issue-25180.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/test/run-pass/issue-25180.rs diff --git a/src/test/run-pass/issue-25180.rs b/src/test/run-pass/issue-25180.rs new file mode 100644 index 00000000000..4e6f9b321ba --- /dev/null +++ b/src/test/run-pass/issue-25180.rs @@ -0,0 +1,13 @@ +// Copyright 2015 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. + +const x: &'static Fn() = &|| println!("ICE here"); + +fn main() {}