Skip to content

sylvaingml/Swift-compiler-crash-closure-param

Repository files navigation

Swift: a compiler crash

Here is a sample project to reproduce a crash in the Swift compiler.

Don't know how to fix this. Issue seems to be tied to the closure parameter, but not really sure about this.

Any idea?

internal func changeCounter(
    atIndexPath indexPath: NSIndexPath,
    withUnary operation: ( Int ) -> Int
    )
{
    let section = Sections(rawValue: indexPath.section)
    if ( .counters == section )
    {
      value = operation(value)
    }
}

About

Reproducing a simple crash of the compiler/playground (with closure?)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages