plugins: change return codes of geany_load_module() and GeanyPluginFuncs::init
[geany-mirror.git] / tests / ctags / bug665086.cpp
bloba516fda0fbe0b7fd9769171683e44372e59649c5
1 /*
2 Bugs item #665086, was opened at 2003-01-09 15:30
3 You can respond by visiting:
4 https://sourceforge.net/tracker/?func=detail&atid=106556&aid=665086&group_id=6556
6 Category: None
7 Group: None
8 Status: Open
9 Resolution: None
10 Priority: 5
11 Submitted By: Welti Marco (cider101)
12 Assigned to: Nobody/Anonymous (nobody)
13 Summary: nested namespaces
15 Initial Comment:
18 it seems that ctags has ommits the scope for nested
19 namespaces.
21 namespace N1
23 namespace N2
25 class C12{}
29 N1 test.h /^namespace N1$/;" namespace line:1
30 N2 test.h /^namespace N2$/;" namespace line:3
31 C12 test.h /^ class C12{};$/;" class line:5 namespace:N1::N2