aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/spellcheck-pr78313.C
blob: e34176d5f7471c2df163f5e3fc1eb66da5c4404a (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/78313 (see also PR c++/72774)
// { dg-do compile }

void baz ();
namespace A { void foo (); }
void bar ()
{
  using A::foo;
  0 ? static_cast<foo> (0) : baz; // { dg-bogus "did you mean" }
  // { dg-error "does not name a type" "" { target *-*-* } .-1 }
}