-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathi22232.scala
32 lines (26 loc) · 967 Bytes
/
i22232.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
class C
object C:
extension (c: C) def equals(that: Any): Boolean = false // warn
object X:
class C
opaque type D <: C = C
object D:
extension (d: D) def equals(that: Any): Boolean = false // warn
object Upperbound1:
opaque type MyString[+T] <: String = String
extension (arr: MyString[Byte]) def length: Int = 0 // warn
object Upperbound2:
opaque type MyString[+T] <: String = String
extension [T <: MyString[Byte]](arr: T) def length: Int = 0 // warn
object Upperbound3:
opaque type MyString[+T] <: String = String
extension [T](arr: T) def length: Int = 0 // nowarn
object NonUpperbound1:
opaque type MyString[+T] = String
extension (arr: MyString[Byte]) def length: Int = 0 // nowarn
object NonUpperbound2:
opaque type MyString[+T] = String
extension [T <: MyString[Byte]](arr: T) def length2: Int = 0 // nowarn
object NonUpperbound3:
opaque type MyString[+T] = String
extension [T](arr: T) def length: Int = 0 // nowarn