summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-dispatch-from-dyn-cell.rs
blob: 83366ea02b09a4be662212c0425827ea4497c1d0 (plain)
1
2
3
4
5
6
7
8
9
// 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() {}