ruby: handle singleton method including ?!= in its name(sf.bug:364)
[geany-mirror.git] / tests / ctags / bug2374109.vhd
blob019dea50cb15599993060428852a3424264fbf68
1 function Pow2( N, Exp : integer ) return mylib.myinteger is
2 Variable Result : integer := 1;
4 begin
5 for i in 1 to Exp loop
6 Result := Result * N;
7 end loop;
8 return( Result );
9 end Pow;