result code = -1 standard error = { tests/bugs/generic-type-arg-overloaded.slang(14): error 30200: declaration of 'Stuff' conflicts with existing declaration struct Stuff {} ^~~~~ tests/bugs/generic-type-arg-overloaded.slang(11): note: see previous declaration of 'Stuff' struct Stuff : IThing { int getVal() { return 1; } } ^~~~~ tests/bugs/generic-type-arg-overloaded.slang(26): error 39999: ambiguous reference to 'Stuff' return util() ^~~~~ tests/bugs/generic-type-arg-overloaded.slang(14): note 39999: candidate: struct Stuff struct Stuff {} ^~~~~ tests/bugs/generic-type-arg-overloaded.slang(11): note 39999: candidate: struct Stuff struct Stuff : IThing { int getVal() { return 1; } } ^~~~~ tests/bugs/generic-type-arg-overloaded.slang(32): error 39999: expected a generic when using '<...>' (found: '() -> int') + nonGeneric(); ^~~~~~~~~~ } standard output = { }