mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00

- Many tests needlessly had a UTF-8 BOM, these have been removed. - compilable/ddoc12.d has been renamed to compilable/ddoc_bom_UTF8.d. - runnable/*UTF*.d tests have been renamed to runnable/bom_UTF*.d. - The 'helloUTF8.d' test didn't have a UTF-8 BOM, this has been added.
17 lines
236 B
D
17 lines
236 B
D
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
|
|
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
|
|
|
|
///
|
|
interface A
|
|
{
|
|
///
|
|
static void staticHello() { }
|
|
|
|
///
|
|
final void hello() { }
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|