summaryrefslogtreecommitdiffstats
path: root/third_party/rust/inherent/tests/ui/blanket-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/inherent/tests/ui/blanket-impl.rs')
-rw-r--r--third_party/rust/inherent/tests/ui/blanket-impl.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/rust/inherent/tests/ui/blanket-impl.rs b/third_party/rust/inherent/tests/ui/blanket-impl.rs
new file mode 100644
index 0000000000..d775c5e937
--- /dev/null
+++ b/third_party/rust/inherent/tests/ui/blanket-impl.rs
@@ -0,0 +1,12 @@
+use inherent::inherent;
+
+trait A {
+ fn a(&self);
+}
+
+#[inherent]
+impl<T> A for T {
+ fn a(&self) {}
+}
+
+fn main() {}