a7bf009034
* Bugfix: Now slash/start comments aren't duplicated on trait parameters. * Removing unnecesary comment. * Improvements: Improving the BytePos offset. * Improvements: Improving the description of the test cases.
5 lines
152 B
Rust
5 lines
152 B
Rust
// Test /* comment */ inside trait generics does not get duplicated.
|
|
trait Test</* comment */ T> {}
|
|
|
|
trait TestTwo</* comment */ T, /* comment */ V> {}
|