2023-04-20 09:37:15 -05:00
|
|
|
//@compile-flags: --crate-name conf_disallowed_methods
|
2022-11-04 16:58:07 -05:00
|
|
|
|
2023-06-15 14:15:10 -05:00
|
|
|
#![allow(clippy::needless_raw_strings)]
|
2021-11-18 07:08:48 -06:00
|
|
|
#![warn(clippy::disallowed_methods)]
|
2023-06-06 15:56:57 -05:00
|
|
|
#![allow(clippy::useless_vec)]
|
2020-09-24 15:32:03 -05:00
|
|
|
|
2022-10-05 08:44:01 -05:00
|
|
|
extern crate futures;
|
2020-09-24 15:32:03 -05:00
|
|
|
extern crate regex;
|
2022-10-05 08:44:01 -05:00
|
|
|
|
|
|
|
use futures::stream::{empty, select_all};
|
2020-09-24 15:32:03 -05:00
|
|
|
use regex::Regex;
|
|
|
|
|
2022-11-04 16:58:07 -05:00
|
|
|
fn local_fn() {}
|
|
|
|
|
|
|
|
struct Struct;
|
|
|
|
|
|
|
|
impl Struct {
|
|
|
|
fn method(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Trait {
|
|
|
|
fn provided_method(&self) {}
|
|
|
|
fn implemented_method(&self);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Trait for Struct {
|
|
|
|
fn implemented_method(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod local_mod {
|
|
|
|
pub fn f() {}
|
|
|
|
}
|
|
|
|
|
2020-09-24 15:32:03 -05:00
|
|
|
fn main() {
|
|
|
|
let re = Regex::new(r"ab.*c").unwrap();
|
|
|
|
re.is_match("abc");
|
|
|
|
|
2021-12-09 14:42:44 -06:00
|
|
|
let mut a = vec![1, 2, 3, 4];
|
2020-09-24 15:32:03 -05:00
|
|
|
a.iter().sum::<i32>();
|
2021-12-09 14:42:44 -06:00
|
|
|
|
|
|
|
a.sort_unstable();
|
|
|
|
|
|
|
|
let _ = 2.0f32.clamp(3.0f32, 4.0f32);
|
|
|
|
let _ = 2.0f64.clamp(3.0f64, 4.0f64);
|
2022-05-20 07:39:15 -05:00
|
|
|
|
|
|
|
let indirect: fn(&str) -> Result<Regex, regex::Error> = Regex::new;
|
|
|
|
let re = indirect(".").unwrap();
|
|
|
|
|
|
|
|
let in_call = Box::new(f32::clamp);
|
|
|
|
let in_method_call = ["^", "$"].into_iter().map(Regex::new);
|
2022-10-05 08:44:01 -05:00
|
|
|
|
|
|
|
// resolve ambiguity between `futures::stream::select_all` the module and the function
|
|
|
|
let same_name_as_module = select_all(vec![empty::<()>()]);
|
2022-11-04 16:58:07 -05:00
|
|
|
|
|
|
|
local_fn();
|
|
|
|
local_mod::f();
|
|
|
|
let s = Struct;
|
|
|
|
s.method();
|
|
|
|
s.provided_method();
|
|
|
|
s.implemented_method();
|
2020-09-24 15:32:03 -05:00
|
|
|
}
|