about summary refs log tree commit diff
path: root/src/test/run-pass/trait-default-method-bound-subst3.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-03-22 13:13:15 -0700
committerBrian Anderson <banderson@mozilla.com>2015-03-23 14:40:26 -0700
commit8c93a79e387f5197e8b8fe73b3d87d2b101b7c4a (patch)
treed2cb1326e0e65d1a271f77452f3ad1b64386d7ad /src/test/run-pass/trait-default-method-bound-subst3.rs
parente9019101a82dd7f61dcdcd52bcc0123d5ed25d22 (diff)
downloadrust-8c93a79e387f5197e8b8fe73b3d87d2b101b7c4a.tar.gz
rust-8c93a79e387f5197e8b8fe73b3d87d2b101b7c4a.zip
rustdoc: Replace no-pretty-expanded with pretty-expanded
Now that features must be declared expanded source often does not compile.
This adds 'pretty-expanded' to a bunch of test cases that still work.
Diffstat (limited to 'src/test/run-pass/trait-default-method-bound-subst3.rs')
-rw-r--r--src/test/run-pass/trait-default-method-bound-subst3.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/run-pass/trait-default-method-bound-subst3.rs b/src/test/run-pass/trait-default-method-bound-subst3.rs
index aff20ffe962..abf135a6685 100644
--- a/src/test/run-pass/trait-default-method-bound-subst3.rs
+++ b/src/test/run-pass/trait-default-method-bound-subst3.rs
@@ -9,6 +9,8 @@
 // except according to those terms.
 
 
+// pretty-expanded FIXME #23616
+
 trait A {
     fn g<T>(&self, x: T, y: T) -> (T, T) { (x, y) }
 }