Project

General

Profile

Actions

Bug #20741

closed

RubyVM::InstructionSequence.compile emits a wrong warning (prism?)

Added by mame (Yusuke Endoh) about 1 month ago. Updated about 1 month ago.

Status:
Closed
Target version:
-
[ruby-core:119194]

Description

$ ./local/bin/ruby -we 'p RubyVM::InstructionSequence.compile("42").eval'
<compiled>:1: warning: possibly useless use of a literal in void context
42

Updated by byroot (Jean Boussier) about 1 month ago

prism?

Yes:

$ ./miniruby --parser=parse.y -we 'p RubyVM::InstructionSequence.compile("42").eval'
42
$ ./miniruby --parser=prism -we 'p RubyVM::InstructionSequence.compile("42").eval'
<compiled>:1: warning: possibly useless use of a literal in void context
42

Updated by kddnewton (Kevin Newton) about 1 month ago

I have submitted a PR that will fix this https://github.com/ruby/ruby/pull/11632.

Actions #3

Updated by kddnewton (Kevin Newton) about 1 month ago

  • Status changed from Open to Closed
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0