Skip to content

Commit

Permalink
close #1991
Browse files Browse the repository at this point in the history
  • Loading branch information
zah committed Mar 24, 2017
1 parent 5237774 commit f8c921d
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions tests/concepts/tconcepts_overload_precedence.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
discard """
ouput: '''x as ParameterizedType[T]
x as ParameterizedType[T]
x as ParameterizedType[T]
x as ParameterizedType
x as ParameterizedType
x as CustomTypeClass'''
"""

type ParameterizedType[T] = object

type CustomTypeClass = concept
true

# 3 competing procs
proc a[T](x: ParameterizedType[T]) =
echo "x as ParameterizedType[T]"

proc a(x: ParameterizedType) =
echo "x as ParameterizedType"

proc a(x: CustomTypeClass) =
echo "x as CustomTypeClass"

# the same procs in different order
proc b(x: ParameterizedType) =
echo "x as ParameterizedType"

proc b(x: CustomTypeClass) =
echo "x as CustomTypeClass"

proc b[T](x: ParameterizedType[T]) =
echo "x as ParameterizedType[T]"

# and yet another order
proc c(x: CustomTypeClass) =
echo "x as CustomTypeClass"

proc c(x: ParameterizedType) =
echo "x as ParameterizedType"

proc c[T](x: ParameterizedType[T]) =
echo "x as ParameterizedType[T]"

# remove the most specific one
proc d(x: ParameterizedType) =
echo "x as ParameterizedType"

proc d(x: CustomTypeClass) =
echo "x as CustomTypeClass"

# then shuffle the order again
proc e(x: CustomTypeClass) =
echo "x as CustomTypeClass"

proc e(x: ParameterizedType) =
echo "x as ParameterizedType"

# the least specific one is a match
proc f(x: CustomTypeClass) =
echo "x as CustomTypeClass"

a(ParameterizedType[int]())
b(ParameterizedType[int]())
c(ParameterizedType[int]())
d(ParameterizedType[int]())
e(ParameterizedType[int]())
f(ParameterizedType[int]())

0 comments on commit f8c921d

Please sign in to comment.