summaryrefslogtreecommitdiffstats
path: root/third_party/rust/async-trait/tests/ui/self-span.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/async-trait/tests/ui/self-span.rs')
-rw-r--r--third_party/rust/async-trait/tests/ui/self-span.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/third_party/rust/async-trait/tests/ui/self-span.rs b/third_party/rust/async-trait/tests/ui/self-span.rs
new file mode 100644
index 0000000000..b01f247032
--- /dev/null
+++ b/third_party/rust/async-trait/tests/ui/self-span.rs
@@ -0,0 +1,30 @@
+use async_trait::async_trait;
+
+pub struct S {}
+
+pub enum E {
+ V {},
+}
+
+#[async_trait]
+pub trait Trait {
+ async fn method(self);
+}
+
+#[async_trait]
+impl Trait for S {
+ async fn method(self) {
+ let _: () = self;
+ let _: Self = Self;
+ }
+}
+
+#[async_trait]
+impl Trait for E {
+ async fn method(self) {
+ let _: () = self;
+ let _: Self = Self::V;
+ }
+}
+
+fn main() {}