You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lucmac:sandbox luc$ scala-hash v2.11.0Welcome to Scala version 2.11.0-20140415-163722-cac6383e66 (JavaHotSpot(TM) 64-BitServerVM, Java1.6.0_65).
Type in expressions to have them evaluated.
Type:help for more information.
scala>classC {
|deff= () => ()
| }
defined classC
scala>:javap -fun C#f
[...]
const #53=AscizInnerClasses;
const #54=AscizScala;
{
public static final long serialVersionUID;
Constantvalue: long 0l
public final void apply();
Code:Stack=1, Locals=1, Args_size=1
[...]
vs.
lucmac:sandbox luc$ scala-hash v2.11.1Welcome to Scala version 2.11.1-20140519-130118-1e1defd99c (JavaHotSpot(TM) 64-BitServerVM, Java1.6.0_65).
Type in expressions to have them evaluated.
Type:help for more information.
scala>classC {
|deff= () => ()
| }
defined classC
scala>:javap -fun C#f
[...]
const #48=AscizInnerClasses;
const #49=AscizScala;
{
public final void apply();
Code:Stack=1, Locals=1, Args_size=1
[...]
The text was updated successfully, but these errors were encountered:
https://gist.github.com/JoshRosen/3d8d5d5cc35bc245185c
vs.
The text was updated successfully, but these errors were encountered: