#include <iostream>
using namespace std;

struct A {};

struct B
{
	B() : a{}
	{
	}
	
	const A& a;
};

int main() {
	A a;
	return 0;
}