Map freepascal namespaces and add a unit test for them
[geany-mirror.git] / tests / ctags / namespace.bas
blob76887ff56af3b30be1c7929105ce3360914adb96
1 namespace first 'first defines something'
2 sub first_func
3 end sub
5 namespace second 'second defines something'
6 sub first_func 'oh a second first_func
7 end sub
9 sub second_func
10 end sub
11 end namespace 'ignored'
12 end namespace
14 sub first_func 'oh another first_func
15 end sub