forked from qt-creator/qt-creator
debugger: add a manual test for namespace aliases
This commit is contained in:
@@ -86,6 +86,18 @@ private:
|
||||
};
|
||||
|
||||
|
||||
namespace nsX {
|
||||
namespace nsY {
|
||||
int z;
|
||||
}
|
||||
}
|
||||
|
||||
namespace nsXY = nsX::nsY;
|
||||
|
||||
int qwert()
|
||||
{
|
||||
return nsXY::z;
|
||||
}
|
||||
|
||||
uint qHash(const QMap<int, int> &)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user