From: naruse@... Date: 2015-01-17T16:00:27+00:00 Subject: [ruby-core:67654] [ruby-trunk - Bug #10711] Incorrect error message in coerce failed Issue #10711 has been updated by Yui NARUSE. Backport changed from 2.0.0: REQUIRED, 2.1: REQUIRED, 2.2: REQUIRED to 2.0.0: REQUIRED, 2.1: REQUIRED, 2.2: DONE ruby_2_2 r49313 merged revision(s) 49224,49234,49235. ---------------------------------------- Bug #10711: Incorrect error message in coerce failed https://bugs.ruby-lang.org/issues/10711#change-51074 * Author: Chris Seaton * Status: Closed * Priority: Low * Assignee: * ruby -v: ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-darwin14] * Backport: 2.0.0: REQUIRED, 2.1: REQUIRED, 2.2: DONE ---------------------------------------- ~~~ $ ruby -v -e '1 & 1.2' ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-darwin14] -e:1: warning: possibly useless use of & in void context -e:1:in `&': 1.2 can't be coerced into Float (TypeError) from -e:1:in `
' ~~~ It's telling me it couldn't coerce a Float into a Float, when it probably means into an Integer (or maybe Fixnum?). I looked at the C, but couldn't see where the problem is. coerce_failed seems to use the correct value to get the class for the error so must be something before there. -- https://bugs.ruby-lang.org/