()
| 17 | ) |
| 18 | |
| 19 | func Example_decodeWindows1252() { |
| 20 | sr := strings.NewReader("Gar\xe7on !") |
| 21 | tr := charmap.Windows1252.NewDecoder().Reader(sr) |
| 22 | io.Copy(os.Stdout, tr) |
| 23 | // Output: Garçon ! |
| 24 | } |
| 25 | |
| 26 | func ExampleUTF8Validator() { |
| 27 | for i := 0; i < 2; i++ { |
nothing calls this directly
no test coverage detected