]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/issue-93647.rs
Rollup merge of #93613 - crlf0710:rename_to_async_iter, r=yaahc
[rust.git] / src / test / ui / const-generics / issue-93647.rs
1 struct X<const N: usize = {
2     (||1usize)()
3     //~^ ERROR cannot call
4 }>;
5
6 fn main() {}