• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct pair {
2     int a, b;
methodpair3     void method() const {}
4 };
5 
main()6 int main() {
7     (pair { 0, 0 }).method();
8 }
9 
10