mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
299 B
D
10 lines
299 B
D
// EXTRA_FILES: imports/test11563core_bitop.d imports/test11563std_array.d imports/test11563std_range.d imports/test11563std_traits.d
|
|
import imports.test11563std_traits;
|
|
|
|
interface J : I {} // comment out to let compilation succeed
|
|
|
|
struct A { }
|
|
static assert(moduleName!A == "b");
|
|
|
|
|
|
interface I {}
|