Files
swift-mirror/test/SILOptimizer/Inputs/Problems.swift

17 lines
200 B
Swift

public class Problem1: BaseProblem
{
override func run() -> Int
{
return 1
}
}
public class Problem2: BaseProblem
{
override func run() -> Int
{
return 2
}
}