A defaulted default function Object() { [native code] } is defined as a user-defined default function Object() { [native code] } with an empty compound statement and no initialization list.
I'll give you an example to demonstrate the difference:
#include <iostream>
using namespace std;
class A 
{
public:
    int x;
    A(){}
};
class B 
{
public:
    int x;
    B()=default;
};
int main() 
{ 
    int x = 5;
    new(&x)A(); // Call for empty constructor, which does nothing
    cout << x << endl;
    new(&x)B; // Call for default constructor
    cout << x << endl;
    new(&x)B(); // Call for default constructor + Value initialization
    cout << x << endl;
    return 0; 
} 
Output:
5
5
0
As can be seen, calling the empty A() function Object() { [native code] } does not initialise the members, whereas calling B() does.