]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-40350.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-40350.rs
1 // check-pass
2
3 enum E {
4     A = {
5         enum F { B }
6         0
7     }
8 }
9
10 fn main() {}