summary refs log tree commit diff stats
path: root/tools/detect/timesize.c
Commit message (Expand)AuthorAgeFilesLines
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* added detect.nim; bugfix: build.sh templateAraq2010-08-171-0/+9
='#n34'>34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
amp;id=c6398d408de89672d1df21ee84507978f2320ba8'>c6398d408 ^

7659739ca ^
c6398d408 ^
7659739ca ^
c6398d408 ^
7659739ca ^
1
2
3
4
5
6
7
8
9
10
11
12
13
           

                   


                                          

                                              
                
       
              
 
            
discard """
  output: "caught!"
"""
# Test inheritance for exception matching:

try:
  raise newException(OSError, "dummy message")
except Exception:
  echo "caught!"
except:
  echo "wtf!?"

#OUT caught!