switch-coreboot/util/dtc/comment-test.dts
Ronald G. Minnich a28296a6d2 filling in
git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@2 f3766cd6-281f-0410-b1cd-43a5c92072e9
2006-10-06 19:19:14 +00:00

38 lines
446 B
Text

/* regexps for lexing comments are.. tricky. Check if we've actually
* got it right */
/ {
// line comment
prop1;
/* comment */
prop2;
/* multiline
notaprop1;
comment */
prop3;
/**/
prop4;
/***/
prop5;
/****/
prop6;
/* another
* multiline
* comment */
prop7;
/* yet
* another
* multline
* comment
*/
prop8;
/** try this */
prop9;
/* and this **/
prop10;
child /* finally */ {
};
};
/* final comment */