1# First comment
2Feature: My amazing feature
3  Feature description line 1
4  Feature description line 2
5
6#comment
7Scenario Outline: My detailed scenario #string
8  Given That <x> is set
9  When When I <subtract>
10  Then I should get the <remain#der>
11
12  # indented comment
13  Examples:
14    | x    | subtract | remain#der |
15    | 12   | 5\|3     |  #73       |
16    | #the | 10       |  15        |
17