]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0671.md
Auto merge of #66396 - smmalis37:pythontest, r=alexcrichton
[rust.git] / src / librustc_error_codes / error_codes / E0671.md
1 #### Note: this error code is no longer emitted by the compiler.
2
3 Const parameters cannot depend on type parameters.
4 The following is therefore invalid:
5
6 ```compile_fail,E0741
7 #![feature(const_generics)]
8
9 fn const_id<T, const N: T>() -> T { // error
10     N
11 }
12 ```