summary refs log tree commit diff stats
path: root/nimsuggest/sexp.nim
diff options
context:
space:
mode:
Diffstat (limited to 'nimsuggest/sexp.nim')
0 files changed, 0 insertions, 0 deletions
Strzelecki <ono@java.pl> 2015-09-04 23:04:32 +0200 committer Adam Strzelecki <ono@java.pl> 2015-09-04 23:04:32 +0200 tests: Trim .nim files trailing whitespace' href='/ahoang/Nim/commit/tests/misc/tnot.nim?h=devel&id=e80465dacf50f260abec30ae57d37b298c93fd83'>e80465dac ^
a690e7b26 ^

e80465dac ^
a690e7b26 ^


30823c1ce ^
a690e7b26 ^
30823c1ce ^
a690e7b26 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
           
                           

                  


                                          
                                 

                
           


                                                           
                  
           
                 

      
discard """
  errormsg: "type mismatch"
  file: "tnot.nim"
  line: 14
"""
# BUG: following compiles, but should not:

proc nodeOfDegree(x: int): bool =
  result = false

proc main =
  for j in 0..2:
    for i in 0..10:
      if not nodeOfDegree(1) >= 0: #ERROR_MSG type mismatch
        echo "Yes"
      else:
        echo "No"

main()