From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/issues/issue-18501.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/ui/issues/issue-18501.rs (limited to 'tests/ui/issues/issue-18501.rs') diff --git a/tests/ui/issues/issue-18501.rs b/tests/ui/issues/issue-18501.rs new file mode 100644 index 000000000..0ca23074c --- /dev/null +++ b/tests/ui/issues/issue-18501.rs @@ -0,0 +1,13 @@ +// run-pass +// Test that we don't ICE when inlining a function from another +// crate that uses a trait method as a value due to incorrectly +// translating the def ID of the trait during AST decoding. + +// aux-build:issue-18501.rs +// pretty-expanded FIXME #23616 + +extern crate issue_18501 as issue; + +fn main() { + issue::pass_method(); +} -- cgit v1.2.3