aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp23/ext-floating15.C
blob: 6d7dc6ad682bb429b530deac5a3c0417fd1a75e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/109278
// { dg-do compile { target float128 } }
// { dg-options "-w" }
// { dg-add-options float128 }

void foo (long double);	// { dg-bogus "initializing argument 1 of" }

void
bar (_Float128 x)
{
  foo (x);
}