Skip to content

Commit

Permalink
Moar easy test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abeln committed Nov 9, 2018
1 parent 236a3af commit 1ccec86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/pos-java-interop/1576/Test.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Test {
val v: TagAnnotation = null
val v: TagAnnotation = ???
println(v.value) // error: value value in class TagAnnotation cannot be accessed as a
// member of TagAnnotation(Test.v) from module class Test$.
}
2 changes: 1 addition & 1 deletion tests/pos-java-interop/t0695/Test.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
object Test extends JavaClass[AnyRef] {
var field: InnerClass = null
var field: InnerClass = ???
}
2 changes: 1 addition & 1 deletion tests/pos-java-interop/t1409/ConcreteImpl.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class ConcreteImpl extends AbstractImpl {
def create : OuterInterface.InnerInterface = null
def create : OuterInterface.InnerInterface = ???
}

0 comments on commit 1ccec86

Please sign in to comment.