#include <iostream>
using namespace std;

struct Foo {
	Foo () : i {15} {}

	int i : 5;
};
    
    

int main() {
	Foo foo;
    cout << foo.i << endl; // 15
	return 0;
}