blob: 6b98d4014f6ca648de5b3b4312ace26b8e8f733f [file] [view]
---
title: UnusedImport
layout: article
---
<!-- Copyright 2023 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file. -->
<!-- Code generated by generrordocs.go; DO NOT EDIT. -->
```
UnusedImport occurs when an import is unused.
Example:
import "fmt"
func main() {}
```