Windows: fix possible buffer overflows
[geany-mirror.git] / tests / ctags / bug2781264.rb
blob866033ad027064a950edd26cd0523f36c47af714
2 class Foo
3   def foo
4     File.open("foo", "r") do |infile|
5       infile.readline
6     end
7   end
9   def bar
10     print "bar"
11   end
12 end