]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_error_codes/src/error_codes/E0671.md
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / compiler / rustc_error_codes / src / 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,E0770
7 #![feature(const_generics)]
8
9 fn const_id<T, const N: T>() -> T { // error
10 N
11 }
12 ```