about summary refs log tree commit diff
path: root/src/test/ui/rt-explody-panic-payloads.rs
AgeCommit message (Collapse)AuthorLines
2021-11-14Move some tests to more reasonable directoriesCaio-30/+0
2021-10-08Update test expectationbjorn3-1/+1
2021-06-19Change entry point to 🛡️ against 💥 💥-payloadsSimonas Kazlauskas-0/+30
Guard against panic payloads panicking within entrypoints, where it is UB to do so. Note that there are a number of implementation approaches to consider. Some simpler, some more complicated. This particular solution is nice in that it also guards against accidental implementation issues in various pieces of runtime code, something we cannot prevent statically right now. Fixes #86030