You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tutorial sometimes uses T (section 3.5) and sometimes uses TYPE (section 6) as a metavariable for types. Consolidate these (I think we should stick with T).
The text was updated successfully, but these errors were encountered:
add special exception for std_miri_test crate to call std-only functions
These being the unit tests of std, they have their own copy of `std::sys` and `std::thread`, so the existing check says this is not std. The check is correct but we want to allow this so we just hard-code the crate name.
The point of this `frame_in_std` check is to prevent people from directly interacting with shims that aren't really properly implemented, but it doesn't need to be 100% airtight. If someone really wants to call their crate `std_miri_test` in order to access some broken shims... they can keep the pieces.
The tutorial sometimes uses
T
(section 3.5) and sometimes usesTYPE
(section 6) as a metavariable for types. Consolidate these (I think we should stick withT
).The text was updated successfully, but these errors were encountered: