summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-temporary-cstring-as-ptr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lint/lint-temporary-cstring-as-ptr.rs')
-rw-r--r--src/test/ui/lint/lint-temporary-cstring-as-ptr.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/lint/lint-temporary-cstring-as-ptr.rs b/src/test/ui/lint/lint-temporary-cstring-as-ptr.rs
deleted file mode 100644
index 7aa4f2e1e..000000000
--- a/src/test/ui/lint/lint-temporary-cstring-as-ptr.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// this program is not technically incorrect, but is an obscure enough style to be worth linting
-#![deny(temporary_cstring_as_ptr)]
-
-use std::ffi::CString;
-
-fn main() {
- let s = CString::new("some text").unwrap().as_ptr();
- //~^ ERROR getting the inner pointer of a temporary `CString`
-}