mirror of
https://github.com/mgechev/revive.git
synced 2024-12-10 10:40:23 +02:00
33 lines
565 B
Go
33 lines
565 B
Go
|
package fixtures
|
||
|
|
||
|
import (
|
||
|
"syscall"
|
||
|
"log"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func foo0() {
|
||
|
os.Exit(1) // MATCH /calls to os.Exit only in main() or init() functions/
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
log.Fatal("v ...interface{}")
|
||
|
}
|
||
|
|
||
|
func foo() {
|
||
|
log.Fatalf(1) // MATCH /calls to log.Fatalf only in main() or init() functions/
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
log.Fatalln("v ...interface{}")
|
||
|
}
|
||
|
|
||
|
func bar() {
|
||
|
log.Fatal(1) // MATCH /calls to log.Fatal only in main() or init() functions/
|
||
|
}
|
||
|
|
||
|
func bar2() {
|
||
|
bar()
|
||
|
syscall.Exit(1) // MATCH /calls to syscall.Exit only in main() or init() functions/
|
||
|
}
|