1
Fork 0

compiler: Seal off the rustc_target::abi enum glob imports

This commit is contained in:
Jubilee Young 2024-10-08 17:32:52 -07:00
parent d92aee556d
commit 43e198a3ae
2 changed files with 8 additions and 3 deletions

View file

@ -1,9 +1,8 @@
use std::fmt;
use std::ops::Deref;
pub use Float::*;
pub use Integer::*;
pub use Primitive::*;
use Float::*;
use Primitive::*;
use rustc_data_structures::intern::Interned;
use rustc_macros::HashStable_Generic;