flint
flint copied to clipboard
Support associated types in traits
trait Asset {
associatedtype RawType
}
or
trait NumericAsset {
associatedtype RawType: Numeric & Comparable
}
This a subtask of #107 and #338.