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