Advertisement
Guest User

concepts: before

a guest
Sep 20th, 2015
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. template <class T> concept bool A() {
  2. return requires(T x) {
  3. { x++ } -> int;
  4. };
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement