]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0391.md
Rollup merge of #62514 - stephaneyfx:box-ffi, r=nikomatsakis
[rust.git] / src / librustc_error_codes / error_codes / E0391.md
1 This error indicates that some types or traits depend on each other
2 and therefore cannot be constructed.
3
4 The following example contains a circular dependency between two traits:
5
6 ```compile_fail,E0391
7 trait FirstTrait : SecondTrait {
8
9 }
10
11 trait SecondTrait : FirstTrait {
12
13 }
14 ```