Sign in
gnu
/
gcc
/
a8404c07e7fca388c02c39077865f7d5fa928430
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
explicit1.C
blob: 2be91d4ca2f7c2d3340b0ec07923aacc137cdf4d [
file
] [
log
] [
blame
]
// { dg-do assemble }
// $7.1.2 disallows explicit on anything but declarations of
// constructors ... including friends.
class
foo
{
public
:
foo
();
};
class
bar
{
public
:
friend
explicit
foo
::
foo
();
};
// { dg-error "" } explicit friend