c++: decltype of (by-value captured reference) [PR79620]
[official-gcc.git] / libgo / go / os / readfrom_stub.go
blob8b7d5fb8f9e35c88dbce07825c73e97614c1a64d
1 // Copyright 2020 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 //go:build !linux
7 package os
9 import "io"
11 func (f *File) readFrom(r io.Reader) (n int64, handled bool, err error) {
12 return 0, false, nil