921e5a0eb4
From-SVN: r14840
15 lines
166 B
C
15 lines
166 B
C
// Build don't link:
|
|
// Special g++ Options: -Wall
|
|
|
|
const int& foo() {
|
|
extern int bar;
|
|
|
|
return bar;
|
|
}
|
|
|
|
const int* baz() {
|
|
extern int bar;
|
|
|
|
return &bar;
|
|
}
|