diff options
Diffstat (limited to 'src/test/ui/inference/inference-variable-behind-raw-pointer.rs')
-rw-r--r-- | src/test/ui/inference/inference-variable-behind-raw-pointer.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/inference/inference-variable-behind-raw-pointer.rs b/src/test/ui/inference/inference-variable-behind-raw-pointer.rs deleted file mode 100644 index 6662e46b1..000000000 --- a/src/test/ui/inference/inference-variable-behind-raw-pointer.rs +++ /dev/null @@ -1,11 +0,0 @@ -// check-pass - -// tests that the following code compiles, but produces a future-compatibility warning - -fn main() { - let data = std::ptr::null(); - let _ = &data as *const *const (); - if data.is_null() {} - //~^ WARNING type annotations needed - //~| WARNING this is accepted in the current edition -} |