When we have an "extern" global, now we no longer inadvertently define storage for it. Further, we now successfully do define storage when we encounter a definition following one or more extern declarations. Issues #215 and #217.
5 lines
82 B
Plaintext
5 lines
82 B
Plaintext
// Definition of variable "foo" conflicts with definition at
|
|
|
|
int foo;
|
|
float foo;
|