summaryrefslogtreecommitdiffstats
path: root/tests/ui/wf/wf-in-fn-type-arg.rs
blob: 2917a8aa98c548770d1cdbd21a69045e09a9ca5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Check that we enforce WF conditions also for types in fns.

struct MustBeCopy<T:Copy> {
    t: T
}

struct Bar<T> {
    // needs T: Copy
    x: fn(MustBeCopy<T>) //~ ERROR E0277
}

fn main() { }