2023-08-28 15:26:00 +02:00
|
|
|
package fixtures
|
|
|
|
|
|
|
|
|
|
import (
|
2023-11-26 08:57:34 +01:00
|
|
|
. "dotimport" // . aliases should be ignored
|
2025-05-26 13:54:46 +03:00
|
|
|
magical "magic/hat"
|
|
|
|
|
_ "strings" // _ aliases should be ignored
|
2023-08-28 15:26:00 +02:00
|
|
|
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"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func somefunc() {
|
|
|
|
|
fooBAR.Clone("")
|
|
|
|
|
bar_foo.Clone("")
|
|
|
|
|
v1.Clone("")
|
|
|
|
|
magical.Clone("")
|
|
|
|
|
}
|