summary refs log tree commit diff stats
path: root/web/links.txt
Commit message (Expand)AuthorAgeFilesLines
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-0/+0
* added tools and web dirsAndreas Rumpf2009-09-151-0/+0
* deleted web and distAndreas Rumpf2008-08-231-1/+0
* first releaseRumpf2008-06-231-1/+1
* Initial importAndreas Rumpf2008-06-221-0/+1
eas Rumpf <rumpf_a@web.de> 2018-03-24 10:10:28 +0100 fixes the 'var T' checking' href='/ahoang/Nim/commit/tests/varres/twrong_parameter.nim?h=devel&id=299e944cf7777c9ac86ded5aa893d5af9cc08932'>299e944cf ^
3be4f9111 ^

299e944cf ^
3be4f9111 ^


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

   




                                                                      

                     
                 


                         
discard """
  errormsg: "'x' is not the first parameter; context: 'x.field[0]'"
  line: 10
"""

type
  MyObject = object
    field: array[2, int]

proc forward(abc: int; x: var MyObject): var int = result = x.field[0]

proc foo(): var int =
  var y: MyObject
  result = forward(45, y)

echo foo()