Skip to content

Commit 2e91154

Browse files
Merge pull request #2 from petrochenkov/master
Fix syntactic error on nightly Rust
2 parents 9feef91 + b97648a commit 2e91154

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/container/args.rs

+1-1
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)