1
Fork 0

Implement a few more rvalue translation to smir

- Introduce an Opaque type for adding information that is still
   internal to the compiler.
This commit is contained in:
Celina G. Val 2023-06-13 15:08:14 -07:00
parent 697563289d
commit b9f378b19b
5 changed files with 318 additions and 10 deletions

View file

@ -13,6 +13,7 @@
#![cfg_attr(not(feature = "default"), feature(rustc_private))]
#![feature(local_key_cell_methods)]
#![feature(ptr_metadata)]
#![feature(type_alias_impl_trait)] // Used to define opaque types.
// Declare extern rustc_* crates to enable building this crate separately from the compiler.
#[cfg(not(feature = "default"))]