Skip to content

Commit f921982

Browse files
author
Ariel Ben-Yehuda
committed
fix pretty
1 parent 4a16b56 commit f921982

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/run-pass/issue-29147.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ pub struct S4<T>(Option<Box<S3<S3<T>>>>,Option<Box<S3<S3<T>>>>);
2020
pub struct S5<T>(Option<Box<S4<S4<T>>>>,Option<Box<S4<S4<T>>>>,Option<T>);
2121

2222
trait Foo { fn xxx(&self); }
23-
trait Bar {} // anything local or #[fundamental]
23+
/// some local of #[fundamental] trait
24+
trait Bar {}
2425

2526
impl<T> Foo for T where T: Bar, T: Sync {
2627
fn xxx(&self) {}

0 commit comments

Comments
 (0)