Sign in
llvm
/
lldb
/
master
/
.
/
packages
/
Python
/
lldbsuite
/
test
/
commands
/
expression
/
inline-namespace
/
main.cpp
blob: c10b361a0cd49553296fec85e942bbb26c08953f [
file
] [
log
] [
blame
]
namespace
A
{
inline
namespace
B
{
int
f
()
{
return
3
;
}
};
}
int
main
(
int
argc
,
char
**
argv
)
{
// Set break point at this line.
return
A
::
f
();
}