mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
12 lines
217 B
Rust
12 lines
217 B
Rust
#![warn(clippy::disallowed_methods)]
|
|
|
|
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>();
|
|
}
|