mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
251 B
Rust
16 lines
251 B
Rust
// `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);
|
|
fn bar() -> S0 {
|
|
Self(0)
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|