Merge pull request #36 from sofiiako/sofia/Power-Tools-Creating-Generics-Exercise3-EDC-456
fix(Answer placeholder in Creating Generics #3): Corrected placeholde…
This commit is contained in:
commit
61c18eabf9
|
@ -10,10 +10,12 @@ files:
|
|||
length: 202
|
||||
placeholder_text: |-
|
||||
/*
|
||||
val cg: Crate<Grape> = Crate(Grape())
|
||||
val oc: OutCrate<Can> = cg
|
||||
val cc: Crate<Can> = Crate(Can())
|
||||
val ic: InCrate<Grape> = cc
|
||||
val catBox: Box<Cat> = Box(Cat())
|
||||
val outBoxAny: OutBox<Any> = catBox
|
||||
val a: Any = outBoxAny.get()
|
||||
val inBoxAny: InBox<Any> = Box(217)
|
||||
val inBoxCat: InBox<Any> = inBoxAny
|
||||
inBoxCat.put(Cat())
|
||||
*/
|
||||
- name: test/Tests.kt
|
||||
visible: false
|
||||
|
|
Loading…
Reference in New Issue