Guest User

Untitled

a guest
Oct 15th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. trait Foo {
  2. #[deprecated(note = "use baz")]
  3. fn bar(self) {
  4. self.baz()
  5. }
  6.  
  7. fn baz(self);
  8. }
  9.  
  10. fn main() {}
Add Comment
Please, Sign In to add comment