En el siguiente fragmento de código, utilizo el [[fallthrough]]
atributo estándar de C ++ 1z para documentar que se desea una falla:
#include <iostream>
int main() {
switch (0) {
case 0:
std::cout << "a\n";
[[fallthrough]]
case 1:
std::cout << "b\n";
break;
}
}
Con GCC 7.1, el código se compila sin errores. Sin embargo, el compilador todavía me advierte sobre una falla:
warning: this statement may fall through [-Wimplicit-fallthrough=]
std::cout << "a\n";
~~~~~~~~~~^~~~~~~~
¿Por qué?