|
|
|
@ -1,6 +1,6 @@ |
|
|
|
// undef_symbol.cc -- a test case for undefined references
|
|
|
|
|
|
|
|
// Copyright 2007, 2008 Free Software Foundation, Inc.
|
|
|
|
// Copyright 2007, 2008, 2013 Free Software Foundation, Inc.
|
|
|
|
// Written by Ian Lance Taylor <iant@google.com>.
|
|
|
|
|
|
|
|
// This file is part of gold.
|
|
|
|
@ -31,6 +31,8 @@ class Foo |
|
|
|
Foo() |
|
|
|
: a_(a) |
|
|
|
{ } |
|
|
|
int get_a() |
|
|
|
{ return a_; } |
|
|
|
private: |
|
|
|
int a_; |
|
|
|
}; |
|
|
|
|