Skip to content

Commit f25d4fd

Browse files
committed
make it pass for now
1 parent a4d869c commit f25d4fd

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

clippy_lints/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
#![allow(unknown_lints, indexing_slicing, shadow_reuse, missing_docs_in_private_items)]
1212
#![recursion_limit = "256"]
1313

14+
// FIXME(mark-i-m) remove after i128 stablization merges
15+
#![allow(stable_features)]
16+
#![feature(i128, i128_type)]
17+
1418
#[macro_use]
1519
extern crate rustc;
1620
extern crate rustc_typeck;

tests/ui/replace_consts.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#![feature(integer_atomics)]
22
#![allow(blacklisted_name)]
33
#![deny(replace_consts)]
4+
5+
// FIXME(mark-i-m) remove after i128 stablization merges
6+
#![allow(stable_features)]
7+
#![feature(i128, i128_type)]
8+
49
use std::sync::atomic::*;
510
use std::sync::{ONCE_INIT, Once};
611

0 commit comments

Comments
 (0)