Elements Compiler Property Scope issues

class Ruler: UIView {
    var offSet = CGFloat(0)  // Err: Previous declaration was here..

    func drawHorizontalRuler(rect: CGRect) {
        var offSet = CGFloat(0)  //  Err: Duplicate Identifier
    }
}

Thanks, logged as bugs://72611

bugs://72611 got closed with status fixed.