summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/case_sensitive_file_extension_comparisons.stderr
blob: 44c8e3fdf7403d05c6eba7101d231cc6c89d7e14 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
error: case-sensitive file extension comparison
  --> $DIR/case_sensitive_file_extension_comparisons.rs:14:5
   |
LL |     filename.ends_with(".rs")
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using a case-insensitive comparison instead
   = note: `-D clippy::case-sensitive-file-extension-comparisons` implied by `-D warnings`
help: use std::path::Path
   |
LL ~     std::path::Path::new(filename)
LL +         .extension()
LL +         .map_or(false, |ext| ext.eq_ignore_ascii_case("rs"))
   |

error: case-sensitive file extension comparison
  --> $DIR/case_sensitive_file_extension_comparisons.rs:19:13
   |
LL |     let _ = String::new().ends_with(".ext12");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using a case-insensitive comparison instead
help: use std::path::Path
   |
LL ~     let _ = std::path::Path::new(&String::new())
LL +         .extension()
LL ~         .map_or(false, |ext| ext.eq_ignore_ascii_case("ext12"));
   |

error: case-sensitive file extension comparison
  --> $DIR/case_sensitive_file_extension_comparisons.rs:20:13
   |
LL |     let _ = "str".ends_with(".ext12");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using a case-insensitive comparison instead
help: use std::path::Path
   |
LL ~     let _ = std::path::Path::new("str")
LL +         .extension()
LL ~         .map_or(false, |ext| ext.eq_ignore_ascii_case("ext12"));
   |

error: case-sensitive file extension comparison
  --> $DIR/case_sensitive_file_extension_comparisons.rs:24:17
   |
LL |         let _ = "str".ends_with(".ext12");
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using a case-insensitive comparison instead
help: use std::path::Path
   |
LL ~         let _ = std::path::Path::new("str")
LL +             .extension()
LL ~             .map_or(false, |ext| ext.eq_ignore_ascii_case("ext12"));
   |

error: case-sensitive file extension comparison
  --> $DIR/case_sensitive_file_extension_comparisons.rs:31:13
   |
LL |     let _ = String::new().ends_with(".EXT12");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using a case-insensitive comparison instead
help: use std::path::Path
   |
LL ~     let _ = std::path::Path::new(&String::new())
LL +         .extension()
LL ~         .map_or(false, |ext| ext.eq_ignore_ascii_case("EXT12"));
   |

error: case-sensitive file extension comparison
  --> $DIR/case_sensitive_file_extension_comparisons.rs:32:13
   |
LL |     let _ = "str".ends_with(".EXT12");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using a case-insensitive comparison instead
help: use std::path::Path
   |
LL ~     let _ = std::path::Path::new("str")
LL +         .extension()
LL ~         .map_or(false, |ext| ext.eq_ignore_ascii_case("EXT12"));
   |

error: aborting due to 6 previous errors