summaryrefslogtreecommitdiffstats
path: root/src/test/ui/self/ufcs-explicit-self.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/self/ufcs-explicit-self.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/self/ufcs-explicit-self.rs')
-rw-r--r--src/test/ui/self/ufcs-explicit-self.rs49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/test/ui/self/ufcs-explicit-self.rs b/src/test/ui/self/ufcs-explicit-self.rs
deleted file mode 100644
index d83af14d3..000000000
--- a/src/test/ui/self/ufcs-explicit-self.rs
+++ /dev/null
@@ -1,49 +0,0 @@
-// run-pass
-#![allow(dead_code)]
-
-#[derive(Copy, Clone)]
-struct Foo {
- f: isize,
-}
-
-impl Foo {
- fn foo(self: Foo, x: isize) -> isize {
- self.f + x
- }
- fn bar(self: &Foo, x: isize) -> isize {
- self.f + x
- }
- fn baz(self: Box<Foo>, x: isize) -> isize {
- self.f + x
- }
-}
-
-#[derive(Copy, Clone)]
-struct Bar<T> {
- f: T,
-}
-
-impl<T> Bar<T> {
- fn foo(self: Bar<T>, x: isize) -> isize {
- x
- }
- fn bar<'a>(self: &'a Bar<T>, x: isize) -> isize {
- x
- }
- fn baz(self: Bar<T>, x: isize) -> isize {
- x
- }
-}
-
-fn main() {
- let foo: Box<_> = Box::new(Foo {
- f: 1,
- });
- println!("{} {} {}", foo.foo(2), foo.bar(2), foo.baz(2));
- let bar: Box<_> = Box::new(Bar {
- f: 1,
- });
- println!("{} {} {}", bar.foo(2), bar.bar(2), bar.baz(2));
- let bar: Box<Bar<isize>> = bar;
- println!("{} {} {}", bar.foo(2), bar.bar(2), bar.baz(2));
-}