Skip to content

Commit e46b09a

Browse files
committed
Add UI test for E0379
1 parent aa5c4bb commit e46b09a

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// rustc-env:RUST_NEW_ERROR_FORMAT
12+
13+
#![feature(const_fn)]
14+
15+
trait Foo {
16+
fn f() -> u32;
17+
const fn g();
18+
}
19+
20+
impl Foo for u32 {
21+
const fn f() -> u32 { 22 }
22+
fn g() {}
23+
}
24+
25+
fn main() { }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error[E0379]: trait fns cannot be declared const
2+
--> $DIR/const-fn-in-trait.rs:17:5
3+
|
4+
17 | const fn g();
5+
| ^^^^^ trait fns cannot be const
6+
7+
error[E0379]: trait fns cannot be declared const
8+
--> $DIR/const-fn-in-trait.rs:21:5
9+
|
10+
21 | const fn f() -> u32 { 22 }
11+
| ^^^^^ trait fns cannot be const
12+
13+
error: aborting due to 2 previous errors
14+

0 commit comments

Comments
 (0)