Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8299253
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T16:05:11+00:00 2026-06-08T16:05:11+00:00

D discards top level array’s const during implicit functions instantiation and leaves it in

  • 0

D discards top level array’s const during implicit functions instantiation and leaves it in case of explicit one.
Consider code:

// main.d
import std.stdio;
void foo( T )( T val )
{
  writeln( typeid( T ) );
}
void main()
{
const int[] arr; writeln( typeid( arr ) ); // actual type foo( arr ); // implicit instantiation foo!( typeof( arr ) )( arr ); // explicit instantiation }

…and output:

$ dmd main.d && ./main
const(const(int)[])
const(int)[]
const(const(int)[])

As you can see, top level const was lost in case of implicit instantiation. Is this bug, feature or my misunderstanding ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T16:05:12+00:00Added an answer on June 8, 2026 at 4:05 pm

    What’s lost is the constness of the array pointer – not the constness of the array itself.

    const int[] in D protects both the array pointer(you can’t point it to a different array) and the array data(you can’t change the elements). That’s why the first and third outputs have 2 consts in them. However, when you pass the array to the function, there is no need to keep the constness of the pointer – if you change val inside foo to a different array, it won’t effect the content of arr in the main function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm calling two separate functions to determine what P01 equals. The first one selects
error: passing 'const QByteArray' as 'this' argument of 'QByteArray& QByteArray::append(const QByteArray&)' discards qualifiers [-fpermissive]
Is there a function that keeps rows with at least one NA, discards rows
Libspotify stores settings in a file called settings. Now, it seems that it discards
Question Should one discard a packet with an unknown IPv6 extension header? Details I
why do I get a discard qualifiers error: customExc.cpp: In member function ‘virtual const
I am getting the following warning for two lines of my code. initialization discards
I have two structs (part of the assignment). A list of one -- Activity,
When mailman receives a bounceback in a format that it doesn't recognize, it discards
I have a piece of C code that looks like this: const char (*foo)[2]

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.