aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6169/skinnable.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t6169/skinnable.scala')
-rw-r--r--tests/pending/pos/t6169/skinnable.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/pos/t6169/skinnable.scala b/tests/pending/pos/t6169/skinnable.scala
deleted file mode 100644
index 08204f29d..000000000
--- a/tests/pending/pos/t6169/skinnable.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-object ObjectProperty {
- implicit def jfxObjectProperty2sfx[T](p: OP[T]) = new ObjectProperty[T](p)
-}
-
-class ObjectProperty[T](val delegate: OP[T])
-
-trait TestWildcardBoundInference {
- def delegate: Skinnable
- def skin: ObjectProperty[Skin[_ /* inferred: <: Skinnable */]] = ObjectProperty.jfxObjectProperty2sfx(delegate.skinProperty)
- skin: ObjectProperty[Skin[_ <: Skinnable]]
-
- def skinCheckInference = delegate.skinProperty
- skinCheckInference: ObjectProperty[Skin[_ <: Skinnable]]
-}