-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previously, we only rewrote `&self` and `&mut self` receivers. By instantiating the method from the trait definition, we can make this work work with arbitrary legal receivers instead.
- Loading branch information
Showing
5 changed files
with
100 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// Check that more complex receivers work: | ||
// * Arc<dyn Foo> as for custom receivers | ||
// * &dyn Bar<T=Baz> for type constraints | ||
|
||
//@ needs-sanitizer-cfi | ||
// FIXME(#122848) Remove only-linux once OSX CFI binaries work | ||
//@ only-linux | ||
//@ compile-flags: --crate-type=bin -Cprefer-dynamic=off -Clto -Zsanitizer=cfi | ||
//@ compile-flags: -C target-feature=-crt-static -C codegen-units=1 -C opt-level=0 | ||
//@ run-pass | ||
|
||
use std::sync::Arc; | ||
|
||
trait Foo { | ||
fn foo(self: Arc<Self>); | ||
} | ||
|
||
struct FooImpl; | ||
|
||
impl Foo for FooImpl { | ||
fn foo(self: Arc<Self>) {} | ||
} | ||
|
||
trait Bar { | ||
type T; | ||
fn bar(&self) -> Self::T; | ||
} | ||
|
||
struct BarImpl; | ||
|
||
impl Bar for BarImpl { | ||
type T = i32; | ||
fn bar(&self) -> Self::T { 7 } | ||
} | ||
|
||
fn main() { | ||
let foo: Arc<dyn Foo> = Arc::new(FooImpl); | ||
foo.foo(); | ||
|
||
let bar: &dyn Bar<T=i32> = &BarImpl; | ||
assert_eq!(bar.bar(), 7); | ||
} |