diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-03-22 16:45:15 +0100 |
|---|---|---|
| committer | Matthias Krüger <matthias.krueger@famsik.de> | 2024-03-24 09:19:29 +0100 |
| commit | fc5085d5709df1cc6e409d60216c6a1f5380aa48 (patch) | |
| tree | 08fdbbe6fcf7fd2d77d0f166455afffe313beb4c | |
| parent | 548e14b43963882fb758deb89e8258d9b8c2fc2a (diff) | |
| download | rust-fc5085d5709df1cc6e409d60216c6a1f5380aa48.tar.gz rust-fc5085d5709df1cc6e409d60216c6a1f5380aa48.zip | |
add test for #90192
Fixes #90192
| -rw-r--r-- | tests/ui/polymorphization/ice-poly-with-mir-opts-90192.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/polymorphization/ice-poly-with-mir-opts-90192.rs b/tests/ui/polymorphization/ice-poly-with-mir-opts-90192.rs new file mode 100644 index 00000000000..4557c7e517c --- /dev/null +++ b/tests/ui/polymorphization/ice-poly-with-mir-opts-90192.rs @@ -0,0 +1,20 @@ +// issue: rust-lang/rust#90192 +// ICE assertion failed: matches!(ty.kind(), ty :: Param(_)) +//@ compile-flags:-Zpolymorphize=on -Zmir-opt-level=3 +//@ build-pass + +fn test<T>() { + std::mem::size_of::<T>(); +} + +pub fn foo<T>(_: T) -> &'static fn() { + &(test::<T> as fn()) +} + +fn outer<T>() { + foo(|| ()); +} + +fn main() { + outer::<u8>(); +} |
