repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[mlir] Fix typo in test vector transform pass descriptions (#118194)
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
using-decl-pr4450.cpp
blob
ba81e93e0b07b3c8a9b8e2b070e1c409fa634bed
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
namespace
A
{
5
void
g
();
6
}
7
8
namespace
X
{
9
using
A
::
g
;
10
}
11
12
void
h
()
13
{
14
A
::
g
();
15
X
::
g
();
16
}