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