Home | History | Annotate | Download | only in jni
      1 struct pair {
      2     int a, b;
      3     void method() const {}
      4 };
      5 
      6 int main() {
      7     (pair { 0, 0 }).method();
      8 }
      9 
     10