mirror of
https://github.com/mgechev/revive.git
synced 2025-01-24 03:47:45 +02:00
17 lines
381 B
Go
17 lines
381 B
Go
|
package fixtures
|
||
|
|
||
|
import (
|
||
|
_ "strings"
|
||
|
bar_foo "strings" // MATCH /import name (bar_foo) must match the regular expression: ^[a-z][a-z0-9]{0,}$/
|
||
|
fooBAR "strings" // MATCH /import name (fooBAR) must match the regular expression: ^[a-z][a-z0-9]{0,}$/
|
||
|
v1 "strings"
|
||
|
magical "magic/hat"
|
||
|
)
|
||
|
|
||
|
func somefunc() {
|
||
|
fooBAR.Clone("")
|
||
|
bar_foo.Clone("")
|
||
|
v1.Clone("")
|
||
|
magical.Clone("")
|
||
|
}
|