1
0
mirror of https://github.com/deuill/fawkss.git synced 2024-09-28 04:02:43 +00:00
fawkss/spec/01-comments.fkss

21 lines
249 B
Plaintext
Raw Normal View History

//
// Simple comment tests for Fawkss.
//
--- TEST ---
/**
* This should not appear in the final source code.
*/
// Neither should this.
:root {} // This rule should appear, but the comment shouldn't.
--- EXPECTED ---
:root {}
--- END ---