blob: 455623cec43ef826b1673f4ccd4ccfc4dbf01320 [file] [log] [blame]
//@check-pass
#![warn(clippy::path_ends_with_ext)]
use std::path::Path;
fn f(p: &Path) {
p.ends_with(".dot");
}
fn main() {}