1// compile
2
3// Copyright 2013 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Returning an index into a conversion from string to slice caused a
8// compilation error when using gccgo.
9
10package p
11
12func F1(s string) byte {
13	return []byte(s)[0]
14}
15
16func F2(s string) rune {
17	return []rune(s)[0]
18}
19