C++程序  |  10行  |  105 B

struct pair {
    int a, b;
    void method() const {}
};

int main() {
    (pair { 0, 0 }).method();
}