1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
// Copyright 2020 Marc-Antoine Ruel. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
// Package ùtf8 tests a package and function with non-ASCII names.
//
// The filename itself does not contain unicode as this causes issues
// importing panicparse under bazel. For more context, see PR #78.
package ùtf8
// Strùct is a totally normal structure with a totally normal name.
type Strùct struct {
}
// Pànic panics.
func (s *Strùct) Pànic() {
panic(42)
}
|