Skip to content

Commit 384f738

Browse files
committed
add test for #113381
Fixes #113381 r? fee1-dead
1 parent 62270fb commit 384f738

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#![feature(const_closures, const_trait_impl, effects)]
2+
#![allow(incomplete_features)]
3+
4+
trait Foo {
5+
fn foo(&self);
6+
}
7+
8+
impl Foo for () {
9+
fn foo(&self) {}
10+
}
11+
12+
fn main() {
13+
(const || { (()).foo() })();
14+
//~^ ERROR: cannot call non-const fn
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0015]: cannot call non-const fn `<() as Foo>::foo` in constant functions
2+
--> $DIR/const_closure-const_trait_impl-ice-113381.rs:13:22
3+
|
4+
LL | (const || { (()).foo() })();
5+
| ^^^^^
6+
|
7+
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
8+
9+
error: aborting due to previous error
10+
11+
For more information about this error, try `rustc --explain E0015`.

0 commit comments

Comments
 (0)