File: error-festival.rs

package info (click to toggle)
rustc 1.88.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 934,128 kB
  • sloc: xml: 158,127; python: 36,062; javascript: 19,855; sh: 19,700; cpp: 18,947; ansic: 12,993; asm: 4,792; makefile: 690; lisp: 29; perl: 29; ruby: 19; sql: 11
file content (45 lines) | stat: -rw-r--r-- 685 bytes parent folder | download | duplicates (8)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! Check that if there are a lot of errors we truncate the list of errors appropriately

enum Question {
    Yes,
    No,
}

mod foo {
    const FOO: u32 = 0;
}

fn main() {
    let x = "a";
    x += 2;
    //~^ ERROR E0368
    y = 2;
    //~^ ERROR E0425
    x.z();
    //~^ ERROR E0599

    !Question::Yes;
    //~^ ERROR E0600

    foo::FOO;
    //~^ ERROR E0603

    0u32 as char;
    //~^ ERROR E0604

    let x = 0u8;
    x as Vec<u8>;
    //~^ ERROR E0605

    let x = 5;
    let x_is_nonzero = x as bool;
    //~^ ERROR E0054

    let x = &0u8;
    let y: u32 = x as u32;
    //~^ ERROR E0606

    let v = core::ptr::null::<u8>();
    v as *const [u8];
    //~^ ERROR E0607
}