Warning, file /kdevelop/kdevelop/plugins/debuggercommon/tests/debuggees/qhashstring.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #include <QHash>
0002 #include <QString>
0003 int main()
0004 {
0005     QHash<QString, QString> h;
0006     h["10"] = "100";
0007     h["20"] = "200";
0008     h["30"] = "300";
0009     return 0;
0010 }