diff --git a/Test.cpp b/Test.cpp index c5c9802..e56cb35 100644 --- a/Test.cpp +++ b/Test.cpp @@ -1,4 +1,6 @@ -void test() { - int x = 10; - std::cout << x << std::endl; +#include + +void example() { + auto value = 10; // ❌ violates rule + std::cout << value << std::endl; }