File: WarningsSwitch.run

package info (click to toggle)
libperl-critic-freenode-perl 0.028-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 416 kB
  • sloc: perl: 986; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
## name HasSwitch
## failures 1
## cut
#!/usr/bin/perl -w

## name UppercaseSwitch
## failures 1
## cut
#!/usr/bin/perl -W

## name EmbeddedSwitch
## failures 1
## cut
#!/usr/bin/perl -w -T

## name BundledSwitch1
## failures 1
## cut
#!/usr/bin/perl -wT

## name BundledSwitch2
## failures 1
## cut
#!/usr/bin/perl -Tw

## name BundledSwitch3
## failures 1
## cut
#!/usr/bin/perl -TwT

## name NoSwitch
## failures 0
## cut
#!/usr/bin/perl -T

## name NoShebang
## failures 0
## cut
package Foo;