rust/tests/ui/self/self-ctor-nongeneric.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
572 B
Rust
Raw Normal View History

2023-05-14 12:48:57 +00:00
// `Self` as a constructor is currently allowed when the outer item is not generic.
//@ check-pass
struct S0(usize);
impl S0 {
fn foo() {
const C: S0 = Self(0);
//~^ WARN can't reference `Self` constructor from outer item
//~| WARN this was previously accepted by the compiler but is being phased out
2023-05-14 12:48:57 +00:00
fn bar() -> S0 {
Self(0)
//~^ WARN can't reference `Self` constructor from outer item
//~| WARN this was previously accepted by the compiler but is being phased out
2023-05-14 12:48:57 +00:00
}
}
}
fn main() {}