plugins: change return codes of geany_load_module() and GeanyPluginFuncs::init
[geany-mirror.git] / tests / ctags / labels.sql
blob02aeae719f1b20a9166711813e7090d806a6f3de
1 PROCEDURE outer_procedure IS
2 BEGIN
3     <<my_label>>
4     DECLARE
5         x INTEGER;
6     BEGIN
7     END my_label;
8 END