Guest User

Untitled

a guest
Jun 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. const int i = 27;
  2. Func<Foo,bool> predicate = foo => foo.Bar == i;
  3.  
  4. int i = 27;
  5. Func<Foo,bool> predicate = foo => foo.Bar == i;
  6.  
  7. void some_class1::doSomething(const some_class2& cs2)
  8. {
  9. // code
  10. cs2 = cs2; // !!! misspelling cs2 instead cs2_
  11. //
  12. }
Add Comment
Please, Sign In to add comment