about summary refs log tree commit diff
path: root/src/test/debug-info/trait-generic-static-default-method.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-09-19 12:09:52 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-09-24 14:12:02 -0700
commit4b266f1c0df9732bbdea44b0df3d459d4cf2756d (patch)
tree001f53c217538001b4dcc2b5388da2aafe7403b6 /src/test/debug-info/trait-generic-static-default-method.rs
parent4dacd736510b2ae28a54489fe88571f1a6de019f (diff)
downloadrust-4b266f1c0df9732bbdea44b0df3d459d4cf2756d.tar.gz
rust-4b266f1c0df9732bbdea44b0df3d459d4cf2756d.zip
Stop accepting 'impl ...;', require {} instead
Progress on #7981
Diffstat (limited to 'src/test/debug-info/trait-generic-static-default-method.rs')
-rw-r--r--src/test/debug-info/trait-generic-static-default-method.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/debug-info/trait-generic-static-default-method.rs b/src/test/debug-info/trait-generic-static-default-method.rs
index 1f6e6992e27..05258d53586 100644
--- a/src/test/debug-info/trait-generic-static-default-method.rs
+++ b/src/test/debug-info/trait-generic-static-default-method.rs
@@ -40,7 +40,7 @@ trait Trait {
     }
 }
 
-impl Trait for Struct;
+impl Trait for Struct {}
 
 fn main() {