mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 15:11:30 +00:00
14 lines
217 B
Rust
14 lines
217 B
Rust
|
#![warn(clippy::disallowed_method)]
|
||
|
|
||
|
extern crate regex;
|
||
|
use regex::Regex;
|
||
|
|
||
|
fn main() {
|
||
|
let a = vec![1, 2, 3, 4];
|
||
|
let re = Regex::new(r"ab.*c").unwrap();
|
||
|
|
||
|
re.is_match("abc");
|
||
|
|
||
|
a.iter().sum::<i32>();
|
||
|
}
|