mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
Add ui test
This commit is contained in:
parent
ee85704c04
commit
85abdf0757
@ -0,0 +1,18 @@
|
||||
// check-pass
|
||||
|
||||
// This was an ICE, because the compiler ensures the
|
||||
// function to be const when performing const checking,
|
||||
// but functions marked with the attribute are not const
|
||||
// *and* subject to const checking.
|
||||
|
||||
#![feature(staged_api)]
|
||||
#![feature(const_trait_impl)]
|
||||
#![feature(const_fn_trait_bound)]
|
||||
#![stable(since = "1", feature = "foo")]
|
||||
|
||||
trait Tr {
|
||||
#[default_method_body_is_const]
|
||||
fn a() {}
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Reference in New Issue
Block a user