In file included from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h:33,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h:46,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string:43,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bitset:52,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/stdc++.h:52,
from 0_0_40090308_23336.cpp:1:
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h: In instantiation of 'void std::__new_allocator<_Tp>::construct(_Up*, _Args&& ...) [with _Up = node; _Args = {int&}; _Tp = node]':
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h:537:17: required from 'static void std::allocator_traits<std::allocator<_CharT> >::construct(allocator_type&, _Up*, _Args&& ...) [with _Up = node; _Args = {int&}; _Tp = node; allocator_type = std::allocator<node>]'
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc:117:30: required from 'std::vector<_Tp, _Alloc>::reference std::vector<_Tp, _Alloc>::emplace_back(_Args&& ...) [with _Args = {int&}; _Tp = node; _Alloc = std::allocator<node>; reference = node&]'
0_0_40090308_23336.cpp:62:27: required from here
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h:187:11: error: no matching function for call to 'node::node(int&)'
187 | { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
0_0_40090308_23336.cpp:14:8: note: candidate: 'node::node()'
14 | struct node {
| ^~~~
0_0_40090308_23336.cpp:14:8: note: candidate expects 0 arguments, 1 provided
0_0_40090308_23336.cpp:14:8: note: candidate: 'constexpr node::node(const node&)'
0_0_40090308_23336.cpp:14:8: note: no known conversion for argument 1 from 'int' to 'const node&'
0_0_40090308_23336.cpp:14:8: note: candidate: 'constexpr node::node(node&&)'
0_0_40090308_23336.cpp:14:8: note: no known conversion for argument 1 from 'int' to 'node&&'
|