summary refs log blame commit diff stats
path: root/tests/notnil/tnotnil.nim
blob: fba7fa917d564d094f51ee5bd426af235e0d1f66 (plain) (tree)
1
2
3
4
5
6
7
8
9
           
          
                           





                         

                           
 
                  



                                





                         
discard """
  line: 22
  errormsg: "type mismatch"
"""

type
  PObj = ref TObj not nil
  TObj = object
    x: int
  
  MyString = string not nil

#var x: PObj = nil

proc p(x: string not nil): int =
  result = 45

proc q(x: MyString) = nil
proc q2(x: string) = nil

q2(nil)
q(nil)