summary refs log tree commit diff
path: root/tests/ui/parser/impls-nested-within-fns-semantic-0.rs
blob: ac7eb5c72b025d564d6c807a04cbe5e3f6a4cf02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Regression test for #121607 and for part of issue #119924.
// check-pass

trait Trait {
    fn provided() {
        pub struct Type;

        impl Type {
            // This visibility qualifier used to get rejected.
            pub fn perform() {}
        }
    }
}

fn main() {}