summaryrefslogtreecommitdiff
path: root/test/files/neg/t4158.check
blob: 3ee2627c5bd9c5863891022a9e7a9ce59506f82a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
t4158.scala:3: error: type mismatch;
 found   : Null(null)
 required: Int
Note that implicit conversions are not applicable because they are ambiguous:
 both method Integer2intNullConflict in class LowPriorityImplicits of type (x: Null)Int
 and method Integer2int in object Predef of type (x: Integer)Int
 are possible conversion functions from Null(null) to Int
  var y = null: Int
          ^
t4158.scala:2: error: type mismatch;
 found   : Null(null)
 required: Int
Note that implicit conversions are not applicable because they are ambiguous:
 both method Integer2intNullConflict in class LowPriorityImplicits of type (x: Null)Int
 and method Integer2int in object Predef of type (x: Integer)Int
 are possible conversion functions from Null(null) to Int
  var x: Int = null
               ^
two errors found