c++: Fix handling of the `final` contextual keyword
[geany-mirror.git] / tests / ctags / bug877956.f90
blob36cd603fd91f454ed1c3ef64bc7c43ff0e169d3c
1 ! Bugs item #877956, was opened at 2004-01-15 17:59
2 ! Message generated for change (Tracker Item Submitted) made by Item Submitter
3 ! You can respond by visiting:
4 ! https://sourceforge.net/tracker/?func=detail&atid=106556&aid=877956&group_id=6556
6 ! Category: None
7 ! Group: None
8 ! Status: Open
9 ! Resolution: None
10 ! Priority: 5
11 ! Submitted By: Randy Hood (randy762)
12 ! Assigned to: Nobody/Anonymous (nobody)
13 ! Summary: Broken Fortran variable listing after =-1
15 ! Initial Comment:
16 ! When I run ctags v5.5.2 on Redhat Linux 9 with the command
18 ! ctags --Fortran-kinds=v -x test.f90
20 ! where test.f90 is
21 ! ----------------------------------
22 PROGRAM test
24 IMPLICIT NONE
25 INTEGER :: cm1 =-1, c2 = 2
27 END PROGRAM test
28 ! -------------------------------------
30 ! I only get this one line of output
32 ! cm1 variable 4 test.f90 INTEGER :: cm1 =-1, c2 = 2
34 ! If I change one line of test.f90 so that it is now
35 ! ----------------------------------------
36 PROGRAM test
38 IMPLICIT NONE
39 INTEGER :: cm1 = -1, c2 = 2
41 END PROGRAM test
42 ! -----------------------------------------
43 ! and run the command
45 ! ctags --Fortran-kinds=v -x test.f90
47 ! I get this correct output
49 ! c2 variable 4 test.f90 INTEGER :: cm1 = -1, c2 = 2
50 ! cm1 variable 4 test.f90 INTEGER :: cm1 = -1, c2 = 2
52 ! ----------------------------------------------------------------------
53 ! You can respond by visiting:
54 ! https://sourceforge.net/tracker/?func=detail&atid=106556&aid=877956&group_id=6556