Fix clippy lints
diff --git a/src/aster/qpath.rs b/src/aster/qpath.rs
index 71f68b1..6ecde86 100644
--- a/src/aster/qpath.rs
+++ b/src/aster/qpath.rs
@@ -65,6 +65,9 @@
     where F: Invoke<(QSelf, Path)>
 {
     /// Build a qualified path with a path builder.
+    // Clippy false positive
+    // https://github.com/Manishearth/rust-clippy/issues/1285
+    #[cfg_attr(feature = "clippy", allow(wrong_self_convention))]
     pub fn as_(self) -> PathBuilder<Self> {
         PathBuilder::with_callback(self)
     }