1 struct Indexed {}; 2 struct NotIndexed {}; 3 main()4 int main() { 5 Indexed indexed; 6 NotIndexed not_indexed; 7 return 0; // break here 8 } 9