hacky fix for generic constraints matching

This commit is contained in:
Zahary Karadjov
2013-08-15 22:55:11 +03:00
parent 4980ef85e2
commit ca3a4ce672
8 changed files with 68 additions and 17 deletions

View File

@@ -5,7 +5,7 @@ discard """
type
TMyTuple = tuple[a, b: int]
proc indexOf*(t: typedesc, name: string): int {.compiletime.} =
proc indexOf*(t: typedesc, name: string): int =
## takes a tuple and looks for the field by name.
## returs index of that field.
var

View File

@@ -1,8 +1,6 @@
discard """
file: "tfinally.nim"
output: '''came
here
3'''
output: "came\nhere\n3"
"""
# Test return in try statement:
@@ -14,10 +12,8 @@ proc main: int =
echo("came")
return 2
finally:
echo("here ")
echo("here")
return 3
echo main() #OUT came here 3