-
```scala
object Test {
class Rep[T](x : T)
class SomeOps[T](x : Rep[T]) { def foo = 1 }
implicit def mkOps[X, T](x : X)(implicit conv: X => Rep[T]) : SomeOps[T] = new SomeOps(conv(x))
…
-
This is the first step in #20 and critical to unlock outside contributions.
-
## Reproduction steps
**I was unable to get a locally reproducible / relatively easy project that fails.** ~I could not reproduce it locally at all. 😭~ Thx team with all the help to reproduce it!
…
-
## steps
`actions/doc-scala-instance` seems to be failing on Travis CI.
## problem
https://travis-ci.org/sbt/sbt/jobs/624452309?utm_medium=notification&utm_source=github_status
```
[inf…
-
### Describe the bug
at e.g. https://scala-ci.typesafe.com/job/scala-2.13.x-jdk11-integrate-community-build/5027/artifact/logs/metals-build.log we see:
```
[metals] [info] tests.pc.CompletionDo…
-
Test case: https://github.com/scalameta/scalafmt/compare/master...lrytz:scalafmt:java-tag-bug?expand=1
In
```scala
/**
* Text {@foo bar baz} bam.
*/
```
`{@foo bar baz}` is reformatted to…
lrytz updated
12 months ago
-
Hi James,
I'm new to Heroku. When I click Deploy To Heroku Button I get a following error:
-----> Play 2.x - Java app detected
-----> Installing JDK 1.8... done
-----> Priming Ivy cache... done
…
-
## reproduction steps
Scala 2.13.3
The following commit in my project causes the following error when compiling from IntelliJ:
[oldsql](https://github.com/noresttherein/oldsql/commit/c89bc995f00c…
-
Changed in https://github.com/scala/scala/pull/10502
## Reproduction steps
```scala
// /workspace/sandbox/foo.scala
class Foo
```
```
scaladoc -doc-source-url 'http://somewhere€{FILE_PATH…
-
I would like to be able to use jump to definition on a scala doc for example:
```
[[ com.some.package.MyClass#coolMethod ]]
```