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/incremental/ich_method_call_trait_scope.rs | 40 ++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 tests/incremental/ich_method_call_trait_scope.rs (limited to 'tests/incremental/ich_method_call_trait_scope.rs') diff --git a/tests/incremental/ich_method_call_trait_scope.rs b/tests/incremental/ich_method_call_trait_scope.rs new file mode 100644 index 000000000..5566506c0 --- /dev/null +++ b/tests/incremental/ich_method_call_trait_scope.rs @@ -0,0 +1,40 @@ +// Check that the hash for a method call is sensitive to the traits in +// scope. + +// revisions: rpass1 rpass2 +// compile-flags: -Z query-dep-graph + +#![feature(rustc_attrs)] + +fn test() { } + +trait Trait1 { + fn method(&self) { } +} + +impl Trait1 for () { } + +trait Trait2 { + fn method(&self) { } +} + +impl Trait2 for () { } + +mod mod3 { + #[cfg(rpass1)] + use Trait1; + #[cfg(rpass2)] + use Trait2; + + #[rustc_clean(except="typeck", cfg="rpass2")] + fn bar() { + ().method(); + } + + #[rustc_clean(cfg="rpass2")] + fn baz() { + 22; // no method call, traits in scope don't matter + } +} + +fn main() { } -- cgit v1.2.3