Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

overload method support #1

Open
kris-jusiak opened this issue Mar 12, 2017 · 0 comments
Open

overload method support #1

kris-jusiak opened this issue Mar 12, 2017 · 0 comments

Comments

@kris-jusiak
Copy link
Owner

kris-jusiak commented Mar 12, 2017

struct a {
  void read(int) {}
};

struct b {
  void read(int, double) {}
  auto use() {
    return [](auto... t) { struct : decltype(t)... { using decltype(t)::read...; } _; return _; };
  }
};

struct m : decltype(b{}.use()(a{}, b{})) {
};

int main() {
  m _;
  _.read(42);
  _.read(1, 2.0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant