Last active
June 11, 2017 06:53
-
-
Save piedoom/2529f6c3b9413a9d09192c69cb7b3fb5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
impl<T> Default for MyStruct<T> where T: SomeTrait + Default { | |
fn default() -> Self { | |
MyStruct { some_field: SomeTrait::default() } // <-- error | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment