Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/stdlib/QuartzCore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ let deviceRGB = CGColorSpaceCreateDeviceRGB()

class FooLayer: CALayer {
var black: CGColor
var white = CGColor(colorSpace: deviceRGB, components: [1,1,1])!
var white = CGColor(colorSpace: deviceRGB, components: [1,1,1,1])!

override init() {
black = CGColor(colorSpace: deviceRGB, components: [0,0,0])!
black = CGColor(colorSpace: deviceRGB, components: [0,0,0,1])!
super.init()
hangCanary(self)
}
Expand Down