summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/strlen_on_c_strings.fixed
blob: 947a59bcc027a255dc5f81d90f3bcd37021ec1f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// run-rustfix

#![warn(clippy::strlen_on_c_strings)]
#![allow(dead_code)]
#![feature(rustc_private)]
extern crate libc;

#[allow(unused)]
use libc::strlen;
use std::ffi::{CStr, CString};

fn main() {
    // CString
    let cstring = CString::new("foo").expect("CString::new failed");
    let _ = cstring.as_bytes().len();

    // CStr
    let cstr = CStr::from_bytes_with_nul(b"foo\0").expect("CStr::from_bytes_with_nul failed");
    let _ = cstr.to_bytes().len();

    let _ = cstr.to_bytes().len();

    let pcstr: *const &CStr = &cstr;
    let _ = unsafe { (*pcstr).to_bytes().len() };

    unsafe fn unsafe_identity<T>(x: T) -> T {
        x
    }
    let _ = unsafe { unsafe_identity(cstr).to_bytes().len() };
    let _ = unsafe { unsafe_identity(cstr) }.to_bytes().len();

    let f: unsafe fn(_) -> _ = unsafe_identity;
    let _ = unsafe { f(cstr).to_bytes().len() };
}