:m(m)
1234567891011
#include <iostream> struct S { int m; S(int m) : m(m) {} }; int main() { S s = 123; std::cout << s.m << '\n'; }