1
Fork 0

update tests, adding known-bug

This commit is contained in:
Deadbeef 2023-07-27 15:51:02 +00:00
parent e6b423aebb
commit 2d59451274
65 changed files with 289 additions and 661 deletions

View file

@ -1,3 +1,6 @@
// check-pass
// known-bug: #110395
#![feature(const_trait_impl)]
struct S;
@ -21,6 +24,6 @@ const fn equals_self<T: ~const Foo>(t: &T) -> bool {
// it not using the impl.
pub const EQ: bool = equals_self(&S);
//~^ ERROR
// FIXME(effects) ~^ ERROR
fn main() {}