Consider following source files 1.cpp

#include <iostream>

using namespace std;

struct X
{
    X()
    {
        cout << "1" << endl;
    }
};

void bar();

void foo()
{
    X x;
}

int main()
{
    foo();
    bar();
    return 0;
}

2.cpp

#include <cstdio>

struct X
{
    X()
    {
        printf("2\n");
    }
};

void bar()
{
    X x;
}

Is program compiled from these files well-formed? What should be in it's output?

I've expected linker error due to violation of One Definition Rule or output "1 2". However it prints out "1 1" when compiled with g++ 3.4 and VC 8.0.
How this can be explained?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

This does violate ODR (3.2) - specifically that you can have more than one definition of an inline function, but those definitions must be identical (3.2/5) - and leads to undefined behavior, so anything may happen and the compiler/linker is not required to diagnose that. The most likely reason why you see that behavior is that function calls are inlined and do not participate in linking, so no link error is emitted.

link|improve this answer
ODR does not apply to inline functions. – Kerrek SB Feb 22 at 6:23
@Kerrek SB: Description of how inline functions should behave is continuation of ODR description. – sharptooth Feb 22 at 6:29
OK, fair enough :-) – Kerrek SB Feb 22 at 14:06
I tried to compile the compilation units to object files and then link them with both orders. The results was different so it looks for me that linker "throw away" additional definitions. – Dmitriy Matveev Feb 28 at 2:23
@Dmitriy Matveev: That's permissible. In fact anything is permissible when behavior is undefined. – sharptooth Feb 28 at 6:13
feedback

It is undefined behaviour (with no required diagnostic) if inlined functions (such as your class constructor) have different definitions in different translation units.

link|improve this answer
Why it's UB ? Both translation unit sees different X::X; I agree that both are in same global scope. But then what can go wrong due to that ? – iammilind Feb 22 at 6:57
1  
@iammilind: Since X::X is inline, all definitions of X::X in the whole program must be token-wise identical, otherwise the behavior is undefined. That's requirement of 3.2/5. – sharptooth Feb 22 at 7:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.