Skip to content

Commit b84c190

Browse files
committed
Allow newly uplifted invalid_from_utf8 lint
1 parent 7f99c7d commit b84c190

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

library/alloc/tests/str.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![cfg_attr(not(bootstrap), allow(invalid_from_utf8))]
2+
13
use std::assert_matches::assert_matches;
24
use std::borrow::Cow;
35
use std::cmp::Ordering::{Equal, Greater, Less};

tests/ui/process/process-panic-after-fork.rs

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
#![feature(never_type)]
1212
#![feature(panic_always_abort)]
1313

14+
#![allow(invalid_from_utf8)]
15+
1416
extern crate libc;
1517

1618
use std::alloc::{GlobalAlloc, Layout};

0 commit comments

Comments
 (0)