summaryrefslogtreecommitdiffstats
path: root/src/test/ui/methods/method-call-type-binding.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/methods/method-call-type-binding.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/ui/methods/method-call-type-binding.rs b/src/test/ui/methods/method-call-type-binding.rs
new file mode 100644
index 000000000..f547ca8d1
--- /dev/null
+++ b/src/test/ui/methods/method-call-type-binding.rs
@@ -0,0 +1,3 @@
+fn main() {
+ 0.clone::<T = u8>(); //~ ERROR associated type bindings are not allowed here
+}