blob: 5d625fe1903a35c2dcf26096136c86bdc4f4c0d2 [file] [log] [blame]
struct Indexed {};
struct NotIndexed {};
int main() {
Indexed indexed;
NotIndexed not_indexed;
return 0; // break here
}