summary refs log tree commit diff stats
path: root/tests/deprecated/tnoannot.nim
Commit message (Collapse)AuthorAgeFilesLines
* More robust handling of deprecated pragmas (#8696)LemonBoy2018-08-211-0/+7
Prevent `deprecated` annotations to "slip" up to the parent module and warn about unsupported annotations. Accidentally fixes #7867
ss='alt'>
d2244a2f ^
b96af395 ^
1
2
3
4
5
6
7
8

                                  
             


                                       
              
 
# example program: add two numbers

recipe main [
  11:number <- copy 1:literal
  12:number <- copy 3:literal
  13:number <- add 11:number, 12:number
  $dump-memory
]