]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/issue-65035-static-with-parent-generics.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / resolve / issue-65035-static-with-parent-generics.stderr
CommitLineData
e74abb32 1error[E0401]: can't use generic parameters from outer function
94222f64 2 --> $DIR/issue-65035-static-with-parent-generics.rs:3:26
e74abb32
XL
3 |
4LL | fn f<T>() {
5 | - type parameter from outer function
6LL | extern "C" {
7LL | static a: *const T;
8 | ^ use of generic parameter from outer function
9
10error[E0401]: can't use generic parameters from outer function
94222f64 11 --> $DIR/issue-65035-static-with-parent-generics.rs:9:22
e74abb32
XL
12 |
13LL | fn g<T: Default>() {
14 | - type parameter from outer function
15LL | static a: *const T = Default::default();
16 | ^ use of generic parameter from outer function
17
18error[E0401]: can't use generic parameters from outer function
94222f64 19 --> $DIR/issue-65035-static-with-parent-generics.rs:15:24
e74abb32
XL
20 |
21LL | fn h<const N: usize>() {
22 | - const parameter from outer function
23LL | extern "C" {
24LL | static a: [u8; N];
25 | ^ use of generic parameter from outer function
26
27error[E0401]: can't use generic parameters from outer function
94222f64 28 --> $DIR/issue-65035-static-with-parent-generics.rs:21:20
e74abb32
XL
29 |
30LL | fn i<const N: usize>() {
31 | - const parameter from outer function
32LL | static a: [u8; N] = [0; N];
33 | ^ use of generic parameter from outer function
34
35error[E0401]: can't use generic parameters from outer function
94222f64 36 --> $DIR/issue-65035-static-with-parent-generics.rs:21:29
e74abb32
XL
37 |
38LL | fn i<const N: usize>() {
39 | - const parameter from outer function
40LL | static a: [u8; N] = [0; N];
41 | ^ use of generic parameter from outer function
42
94222f64 43error: aborting due to 5 previous errors
e74abb32
XL
44
45For more information about this error, try `rustc --explain E0401`.