mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
13 lines
140 B
C++
13 lines
140 B
C++
// PR 19319
|
|
struct k {
|
|
int data;
|
|
k(int j): data(j) {}
|
|
};
|
|
k make_k () { return k(1); }
|
|
|
|
int main ()
|
|
{
|
|
k foo = make_k ();
|
|
return 0;
|
|
}
|