mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Suppress unused variable warning
This commit is contained in:
parent
fc4abbfcd0
commit
9cb58f1698
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ testdata( File.dirname($0) + '/scandata', ARGV ).each do |file|
|
||||||
begin
|
begin
|
||||||
ok = File.read(file)
|
ok = File.read(file)
|
||||||
s = Racc::GrammarFileScanner.new( ok )
|
s = Racc::GrammarFileScanner.new( ok )
|
||||||
sym, (val, lineno) = s.scan
|
sym, (val, _lineno) = s.scan
|
||||||
if printonly then
|
if printonly then
|
||||||
$stderr.puts
|
$stderr.puts
|
||||||
$stderr.puts val
|
$stderr.puts val
|
||||||
|
|
Loading…
Add table
Reference in a new issue