mirror of
https://github.com/mgechev/revive.git
synced 2024-12-04 10:24:49 +02:00
9 lines
154 B
Go
9 lines
154 B
Go
|
// Test that dot imports are flagged.
|
||
|
|
||
|
// Package pkg ...
|
||
|
package pkg
|
||
|
|
||
|
import . "fmt" // MATCH /should not use dot imports/
|
||
|
|
||
|
var _ Stringer // from "fmt"
|