1// Copyright 2019 The Go Authors. All rights reserved.2// Use of this source code is governed by a BSD-style3// license that can be found in the LICENSE file.45externintweaksym__attribute__((__weak__));
6intweaksym = 42;
7foo2()8intfoo2()9{
10returnweaksym;
11}
12