d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / ddoc2.d
blob2a7e457cf670a9f4ba4d7d1685c29a82989ce670
1 // PERMUTE_ARGS:
2 // REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
3 // POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
5 /**
6 * Summary
8 * Description1
10 * Description2
12 * Description3
14 * Macros:
15 * WIKI = StdStream
16 * meemie
17 * See_Also:
18 * Things to see also.
20 * And more things.
26 module std.test;
28 /// A base class for stream exceptions.
29 class StreamException: Exception {
30 /** Construct a StreamException with given error message msg.
31 * Params:
32 * msg = the $(RED red) $(BLUE blue) $(GREEN green) $(YELLOW yellow).
33 * foo = next parameter which is a much longer
34 * message spanning multiple
35 * lines.
37 this(string msg, int foo) { super(msg); }
39 /********** stars ***************/
40 int stars;