You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
enum TableViewDataState<T> {
case empty(infoViewContent: InfoViewContent, data: T)
case any(data: T)
}
enum TableViewErrorState {
case offline(infoViewContent: InfoViewContent)
case error(infoViewContent: InfoViewContent)
}
enum TableViewState<T: DateableResult> {
case data(_: TableViewDataState<T>)
case error(_: TableViewErrorState)
case placeholder
}
protocol DateableResult {
var age: Date { get }
}
Result of tailor:
Analyzing 1 file:
line 15:12 mismatched input '_' expecting ')'
Tailor Version: v0.11.1
Swift Version: 3.0.1
Platform (Mac/Linux/Windows/CI): Mac
Installation Method: Homebrew
Steps to Reproduce Issue
Expected Behavior
File parsed
Actual Behavior
Parsing failed:
line 8:12 mismatched input '_' expecting ')'
The text was updated successfully, but these errors were encountered: