diff options
Diffstat (limited to 'tests/input/func_i0020.py')
-rw-r--r-- | tests/input/func_i0020.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/input/func_i0020.py b/tests/input/func_i0020.py new file mode 100644 index 000000000..8c0fe9f5c --- /dev/null +++ b/tests/input/func_i0020.py @@ -0,0 +1,8 @@ +"""Test for reporting of suppressed messages.""" + +__revision__ = 0 + +def suppressed(): + """A function with an unused variable.""" + # pylint: disable=W0612 + var = 0 |