trill-lang / trill

A type safe, compiled language inspired by (and written in) Swift
MIT License
275 stars 15 forks source link

Allow overloading imported functions. #28

Closed harlanhaskins closed 7 years ago

harlanhaskins commented 7 years ago

Something is preventing

func putchar(_ char: Int8) {
  putchar(char as Int32)
}

from compiling.