mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
10 lines
229 B
Rust
10 lines
229 B
Rust
// Check that even though Cell: DispatchFromDyn it remains an invalid self parameter type
|
|
|
|
use std::cell::Cell;
|
|
|
|
trait Trait{
|
|
fn cell(self: Cell<&Self>); //~ ERROR invalid `self` parameter type: `Cell<&Self>`
|
|
}
|
|
|
|
fn main() {}
|