Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/tests/method_resolution.rs')
-rw-r--r--crates/hir-ty/src/tests/method_resolution.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/crates/hir-ty/src/tests/method_resolution.rs b/crates/hir-ty/src/tests/method_resolution.rs
index 1f8b06fcc5..94826acca3 100644
--- a/crates/hir-ty/src/tests/method_resolution.rs
+++ b/crates/hir-ty/src/tests/method_resolution.rs
@@ -2170,3 +2170,26 @@ fn main() {
"#,
);
}
+
+#[test]
+fn mut_to_const_pointer() {
+ check(
+ r#"
+pub trait X {
+ fn perform(self) -> u64;
+}
+
+impl X for *const u8 {
+ fn perform(self) -> u64 {
+ 42
+ }
+}
+
+fn test(x: *mut u8) {
+ let _v = x.perform();
+ // ^ adjustments: Pointer(MutToConstPointer)
+ // ^^^^^^^^^^^ type: u64
+}
+"#,
+ );
+}