summaryrefslogtreecommitdiffstats
path: root/tests/ui/save-analysis/issue-89066.rs
blob: c65e2d73fadec2040203464ab7c71631b26592c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// compile-flags: -Zsave-analysis

// Check that this does not ICE.
// Stolen from tests/ui/const-generics/generic_arg_infer/infer-arg-test.rs

#![feature(generic_arg_infer)]

struct All<'a, T, const N: usize> {
  v: &'a T,
}

struct BadInfer<_>;
//~^ ERROR expected identifier
//~| ERROR parameter `_` is never used

fn all_fn<'a, T, const N: usize>() {}

fn bad_infer_fn<_>() {}
//~^ ERROR expected identifier


fn main() {
  let a: All<_, _, _>;
  //~^ ERROR this struct takes 2 generic arguments but 3 generic arguments were supplied
  all_fn();
  let v: [u8; _];
  let v: [u8; 10] = [0; _];
}