Skip to content

Instantly share code, notes, and snippets.

@piedoom
Last active June 11, 2017 06:53
Show Gist options
  • Save piedoom/2529f6c3b9413a9d09192c69cb7b3fb5 to your computer and use it in GitHub Desktop.
Save piedoom/2529f6c3b9413a9d09192c69cb7b3fb5 to your computer and use it in GitHub Desktop.
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