mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
* fixes #11225; generic sandwich problems; [backport:1.2] * progress * delegating these symbols must be done via 'bind'
7 lines
110 B
Nim
7 lines
110 B
Nim
|
|
proc libraryFunc*[T](x: T) =
|
|
mixin mixedIn, indirectlyMixedIn
|
|
echo mixedIn()
|
|
echo indirectlyMixedIn()
|
|
|