Sign in
rust
/
rust-clippy
/
62fd159a5d565aa571b70b31d5dfefc2b6fdbcfd
/
.
/
tests
/
ui-toml
/
path_ends_with_ext
/
path_ends_with_ext.rs
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
()
{}