rust/tests/ui/consts/const-extern-fn
Matthew Jasper 5cc83fd4a5 Fix inline const pattern unsafety checking in THIR
THIR unsafety checking was getting a cycle of
function unsafety checking
-> building THIR for the function
-> evaluating pattern inline constants in the function
-> building MIR for the inline constant
-> checking unsafety of functions (so that THIR can be stolen)
This is fixed by not stealing THIR when generating MIR but instead when
unsafety checking.
This leaves an issue with pattern inline constants not being unsafety
checked because they are evaluated away when generating THIR.
To fix that we now represent inline constants in THIR patterns and
visit them in THIR unsafety checking.
2023-10-16 15:57:59 +00:00
..
const-extern-fn-call-extern-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-extern-fn-call-extern-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-extern-fn-min-const-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-extern-fn-min-const-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-extern-fn-requires-unsafe.mir.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-extern-fn-requires-unsafe.rs Fix inline const pattern unsafety checking in THIR 2023-10-16 15:57:59 +00:00
const-extern-fn-requires-unsafe.thir.stderr Fix inline const pattern unsafety checking in THIR 2023-10-16 15:57:59 +00:00
const-extern-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
feature-gate-const_extern_fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
feature-gate-const_extern_fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-68062-const-extern-fns-dont-need-fn-specifier-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-68062-const-extern-fns-dont-need-fn-specifier-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-68062-const-extern-fns-dont-need-fn-specifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-68062-const-extern-fns-dont-need-fn-specifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00