// RUN: %target-swift-ide-test -print-comments -source-filename %s -comments-xml-schema %S/../../bindings/xml/comment-xml-schema.rng | %FileCheck %s /// Brief. /// /// This is not a code block. func spaceLineMeasurement() {} /** Brief. This is not a code block. */ func spaceBlockMeasurement() {} /// Brief. /// /// This is not a code block. func tabLineMeasurement() {} /** Brief. This is not a code block. */ func tabBlockMeasurement() {} /// Brief. /// /// This is not a code block. func spaceLineMeasurementIndented() {} /** Brief. This is not a code block. */ func spaceBlockMeasurementIndented() {} /// Brief. /// /// This is not a code block. func tabLineMeasurementIndented() {} /** Brief. This is not a code block. */ func tabBlockMeasurementIndented() {} // CHECK: {{.*}} DocCommentAsXML=[spaceLineMeasurement()s:14swift_ide_test20spaceLineMeasurementyyFfunc spaceLineMeasurement()Brief.This is not a code block.] // CHECK: {{.*}} DocCommentAsXML=[spaceBlockMeasurement()s:14swift_ide_test21spaceBlockMeasurementyyFfunc spaceBlockMeasurement()Brief.This is not a code block.] // CHECK: {{.*}} DocCommentAsXML=[tabLineMeasurement()s:14swift_ide_test18tabLineMeasurementyyFfunc tabLineMeasurement()Brief.This is not a code block.] // CHECK: {{.*}} DocCommentAsXML=[tabBlockMeasurement()s:14swift_ide_test19tabBlockMeasurementyyFfunc tabBlockMeasurement()Brief.This is not a code block.] // CHECK: {{.*}} DocCommentAsXML=[spaceLineMeasurementIndented()s:14swift_ide_test28spaceLineMeasurementIndentedyyFfunc spaceLineMeasurementIndented()Brief.This is not a code block.] // CHECK: {{.*}} DocCommentAsXML=[spaceBlockMeasurementIndented()s:14swift_ide_test29spaceBlockMeasurementIndentedyyFfunc spaceBlockMeasurementIndented()Brief.This is not a code block.] // CHECK: {{.*}} DocCommentAsXML=[tabLineMeasurementIndented()s:14swift_ide_test26tabLineMeasurementIndentedyyFfunc tabLineMeasurementIndented()Brief.This is not a code block.] // CHECK: {{.*}} DocCommentAsXML=[tabBlockMeasurementIndented()s:14swift_ide_test27tabBlockMeasurementIndentedyyFfunc tabBlockMeasurementIndented()Brief.This is not a code block.]