Stefan Wieland

Results 1 issues of Stefan Wieland

``` class TestOne { struct Item { let value: String } } class TestTwo { struct Item { let value: Int } } dataSource.sections = [Section(items: [TestOne.Item(value: "Hello"), TestTwo.Item(value: 5)])]...