mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
347 B
D
13 lines
347 B
D
/*
|
|
*/
|
|
extern(C++, std.__overloadset) void ice_std_keyword();
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice17074.d(13): Error: identifier expected for C++ namespace
|
|
fail_compilation/ice17074.d(13): Error: found `*` when expecting `)`
|
|
fail_compilation/ice17074.d(13): Error: declaration expected, not `)`
|
|
---
|
|
*/
|
|
extern(C++, std.*) void ice_std_token();
|