Vlad Ureche

Results 65 comments of Vlad Ureche

Thanks @MelodyLucid! I will try the plugin with spaces in the path.

This needs to go hand in hand with the updated naming scheme.

Thanks for the ping @clayrat! Indeed, I have found less and less time to work on miniboxing. Do you need it ported to 2.12 for a project? Re. dotty, it...

I've updated the issue description to clarify the project status, so anyone looking to use it can contact me if they need support for 2.12.

It just needs resuscitation from a few kind-hearted contributors ;)

Thanks everyone for your interest in miniboxing and thank you, @SethTisue, for following up. TL;DR: As much as I would love to see miniboxing to Scala 3, this will need...

Kicking this down the track, I can't handle it yet.

To show this: ``` scala $ cat gh-bug-61.scala package miniboxing.tests.compile.bug61 class C[@miniboxed T] { def foo(t: T): T = ??? } class D extends C[Int] { override def foo(t: Int):...

At least we don't change `Int` to `Long`: ``` scala $ cat question1.scala package miniboxing.tests.compile.question1 class C[@miniboxed T] { def foo(t: T): T = t } class D extends C[Int]...

Thanks @biboudis! I can reproduce it locally: ``` $ cat gh-bug-235.scala import scala.reflect.ClassTag class Stream[@specialized(Long) T: ClassTag](val loop : (T => Boolean) => Boolean) { def map [@specialized(Long) R :...