Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
11
tests/ui/inference/inference-variable-behind-raw-pointer.rs
Normal file
11
tests/ui/inference/inference-variable-behind-raw-pointer.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
// 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue