Skip to content

Commit b97648a

Browse files
committed
Fix syntactic error on nightly Rust
1 parent 9feef91 commit b97648a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/container/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl <'r> Deref for Arg<'r> {
6464

6565

6666
impl <'r> AsRef<for <'t> Type<'t> + 'r> for Arg<'r> {
67-
fn as_ref(&self) -> & for <'t> Type<'t> + 'r {
67+
fn as_ref(&self) -> &(for <'t> Type<'t> + 'r) {
6868
&**self
6969
}
7070
}

0 commit comments

Comments
 (0)